mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 11:03:46 +00:00
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
|