mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
c6d7cc7697
* Match __osMalloc
* Match src/code/code_800FC620.c (new/delete)
* Wrap versions-specific files in ifdefs to fix compilation
* Fix bss
* Remove {FAULT,RAND,OSMALLOC}_VERSION in favor of PLATFORM_N64
* Fix __osMalloc data splits, add unused strings
* __osMalloc.h -> osMalloc.h
* Fix merge
20 lines
403 B
C
20 lines
403 B
C
#ifndef VERSIONS_H
|
|
#define VERSIONS_H
|
|
|
|
// OOT versions in build order
|
|
#define NTSC_1_0 1
|
|
#define NTSC_1_1 2
|
|
#define PAL_1_0 3
|
|
#define NTSC_1_2 4
|
|
#define PAL_1_1 5
|
|
#define GC_JP 6
|
|
#define GC_JP_MQ 7
|
|
#define GC_US 8
|
|
#define GC_US_MQ 9
|
|
#define GC_EU_MQ_DBG 10
|
|
#define GC_EU 11
|
|
#define GC_EU_MQ 12
|
|
#define GC_JP_CE 13
|
|
|
|
#endif
|