diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-12-19 12:34:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-19 12:34:20 -0500 |
commit | 567589d3ddc30c1a78ce76739f278e4d8f35ef5f (patch) | |
tree | b44bb56f76662182d7b51302c1817592491d0ca0 /include/config.h | |
parent | 7984a91c0892e0bd96ace89405d565ec0b43e084 (diff) | |
parent | 3d123182a8fe8182f66d5e265067107bc276b84e (diff) |
Merge pull request #187 from PikalaxALT/leafgreen
Match Pokemon FireRed 1.1 US
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/config.h b/include/config.h index 491eadf13..67dc38a2b 100644 --- a/include/config.h +++ b/include/config.h @@ -11,9 +11,15 @@ // #define NDEBUG // Fire Red likely forgot to define NDEBUG/NOAGBPRN before release, leading -// to the inclusion of asserts in the retail ROM. Don't try to re-enable this yet -// since not all baseroms and pointers have been dumped yet and will result in -// a broken ROM. +// to the inclusion of asserts in the retail ROM. + +#if REVISION == 0 +#define CODE_ROOT "C:/WORK/POKeFRLG/src/pm_lgfr_ose/source/" +#else +#define CODE_ROOT "C:/WORK/POKeFRLG/Src/pm_lgfr_ose/source/" +#endif + +#define ABSPATH(x) (CODE_ROOT x) #ifdef ENGLISH #define UNITS_IMPERIAL |