diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-10-02 12:01:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 12:01:45 -0400 |
commit | 27070e42f31acc805d7444e840aadbdaa83be6ee (patch) | |
tree | aed3fe304abc22c33c6e4c3e1ca1f233f8b37afc /src/main.c | |
parent | 1bd678656c735bbeb603ccb80367c7a85f820f61 (diff) | |
parent | 99e6a6639efa5d2113fe2787e5be4f0d98f0bf78 (diff) |
Merge pull request #757 from easyaspi314/debug-english
English Debug menu translations!
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main.c b/src/main.c index d7ef91df0..ad4a669b7 100644 --- a/src/main.c +++ b/src/main.c @@ -34,10 +34,12 @@ const u8 gGameVersion = GAME_VERSION; const u8 gGameLanguage = GAME_LANGUAGE; -#if defined(ENGLISH) -const char BuildDateTime[] = "2002 10 15 20:34"; -#elif defined(GERMAN) +// The debug menu expects this exact format. With the English build string, it +// will overflow on the title debug menu, outputting '9999ィ'. +#if defined(GERMAN) || DEBUG const char BuildDateTime[] = "$Name: debug-Euro-2003-05-09-A $"; +#elif defined(ENGLISH) +const char BuildDateTime[] = "2002 10 15 20:34"; #endif const IntrFunc gIntrTableTemplate[] = |