diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-29 09:40:48 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-05-29 09:40:48 -0400 |
commit | 1095493c4f8aa2ae6b8103cb516ffcb92b0b65e4 (patch) | |
tree | b76f863d5f0470f22bea01c81bb5b538a652a0a3 /include/config.h | |
parent | 0cb8e5bbaec817507ccfca6a79f7976e7975d6cf (diff) |
Implement config.mk and config.h
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h new file mode 100644 index 00000000..959e3d18 --- /dev/null +++ b/include/config.h @@ -0,0 +1,14 @@ +#ifndef POKEDIAMOND_CONFIG_H +#define POKEDIAMOND_CONFIG_H + +// #define NDEBUG + +#ifdef DIAMOND +#define GAME_VERSION VERSION_DIAMOND +#else +#define GAME_VERSION VERSION_PEARL +#endif + +#define GAME_LANGUAGE LANGUAGE_ENGLISH + +#endif //POKEDIAMOND_CONFIG_H |