diff options
| author | fig02 <fig02srl@gmail.com> | 2025-04-25 21:12:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-25 21:12:35 -0400 |
| commit | 25b2fa4bca1f1d2d155db2610191af1075e813b3 (patch) | |
| tree | 9c7c4565b76ffbbb7c4ef2dff806e7691b18c508 /include/language_array.h | |
| parent | d4528a0541603ca126bc9c734b9c56bb094211cf (diff) | |
macros.h 3/5: Split various macros (#2512)
* split out various macros
* fix
* fix2
* fix dw
* libc path
* fix macro
* does this fix bss
* fix bss
Diffstat (limited to 'include/language_array.h')
| -rw-r--r-- | include/language_array.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/language_array.h b/include/language_array.h new file mode 100644 index 000000000..b93dbd4e0 --- /dev/null +++ b/include/language_array.h @@ -0,0 +1,12 @@ +#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 |
