mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 19:13:42 +00:00
* split out various macros * fix * fix2 * fix dw * libc path * fix macro * does this fix bss * fix bss
12 lines
225 B
C
12 lines
225 B
C
#ifndef LANGUAGE_ARRAY_H
|
|
#define LANGUAGE_ARRAY_H
|
|
|
|
#include "versions.h"
|
|
|
|
#if OOT_NTSC
|
|
#define LANGUAGE_ARRAY(jpn, eng, ger, fra) { jpn, eng }
|
|
#else
|
|
#define LANGUAGE_ARRAY(jpn, eng, ger, fra) { eng, ger, fra }
|
|
#endif
|
|
|
|
#endif
|