diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c index 9294c80ce..c96e4cc3a 100644 --- a/src/main.c +++ b/src/main.c @@ -55,16 +55,15 @@ static void VCountIntr(void); static void SerialIntr(void); static void IntrDummy(void); -#if defined(FIRERED) -#define GAME_VERSION VERSION_FIRE_RED -#elif defined(LEAF_GREEN) -#define GAME_VERSION VERSION_LEAF_GREEN -#endif const u8 gGameVersion = GAME_VERSION; const u8 gGameLanguage = GAME_LANGUAGE; +#if REVISION == 0 const char BuildDateTime[] = "2004 04 26 11:20"; +#else +const char BuildDateTime[] = "2004 07 20 09:30"; +#endif const IntrFunc gIntrTableTemplate[] = { |