mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
25b2fa4bca
* split out various macros * fix * fix2 * fix dw * libc path * fix macro * does this fix bss * fix bss
13 lines
225 B
C
13 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
|