2021-08-09 08:49:05 -04:00
|
|
|
#ifndef POKEHEARTGOLD_CONFIG_H
|
|
|
|
#define POKEHEARTGOLD_CONFIG_H
|
|
|
|
|
|
|
|
#define VERSION_HEARTGOLD 7
|
|
|
|
#define VERSION_SOULSILVER 8
|
|
|
|
|
|
|
|
#define LANGUAGE_ENGLISH 2
|
|
|
|
|
|
|
|
#undef GAME_VERSION
|
2021-09-04 16:01:18 -04:00
|
|
|
#if defined(HEARTGOLD)
|
2021-08-09 08:49:05 -04:00
|
|
|
#define GAME_VERSION VERSION_HEARTGOLD
|
2021-09-04 16:01:18 -04:00
|
|
|
#elif defined(SOULSILVER)
|
2021-08-09 08:49:05 -04:00
|
|
|
#define GAME_VERSION VERSION_SOULSILVER
|
2021-09-04 16:01:18 -04:00
|
|
|
#else
|
|
|
|
#error "Missing or unrecognized game version define"
|
2021-08-09 08:49:05 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef GAME_LANGUAGE
|
|
|
|
#ifdef ENGLISH
|
|
|
|
#define GAME_LANGUAGE LANGUAGE_ENGLISH
|
2021-09-04 16:01:18 -04:00
|
|
|
#else
|
|
|
|
#error "Missing or unrecognized game language define"
|
2021-08-09 08:49:05 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif //POKEHEARTGOLD_CONFIG_H
|