mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-13 19:35:28 +00:00
Add OOT_PAL_N64 and move other shorthands to versions.h (#2188)
* Move definitions of OOT_NTSC/OOT_PAL/OOT_MQ to versions.h * Add PAL_N64 shorthand
This commit is contained in:
parent
f193311013
commit
09c1816e2d
21 changed files with 42 additions and 51 deletions
|
@ -16,4 +16,27 @@
|
|||
#define GC_EU_MQ 12
|
||||
#define GC_JP_CE 13
|
||||
|
||||
// NTSC/PAL
|
||||
#if OOT_VERSION == PAL_1_0 || OOT_VERSION == PAL_1_1 || OOT_VERSION == GC_EU || OOT_VERSION == GC_EU_MQ || OOT_VERSION == GC_EU_MQ_DBG
|
||||
#define OOT_NTSC 0
|
||||
#define OOT_PAL 1
|
||||
#else
|
||||
#define OOT_NTSC 1
|
||||
#define OOT_PAL 0
|
||||
#endif
|
||||
|
||||
// PAL N64 (50 Hz)
|
||||
#if OOT_VERSION == PAL_1_0 || OOT_VERSION == PAL_1_1
|
||||
#define OOT_PAL_N64 1
|
||||
#else
|
||||
#define OOT_PAL_N64 0
|
||||
#endif
|
||||
|
||||
// Master Quest
|
||||
#if OOT_VERSION == GC_JP_MQ || OOT_VERSION == GC_US_MQ || OOT_VERSION == GC_EU_MQ || OOT_VERSION == GC_EU_MQ_DBG
|
||||
#define OOT_MQ 1
|
||||
#else
|
||||
#define OOT_MQ 0
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue