diff options
author | Kaz <kazbloxmc@gmail.com> | 2020-06-08 04:12:23 -0400 |
---|---|---|
committer | Kaz <kazbloxmc@gmail.com> | 2020-06-08 04:12:23 -0400 |
commit | 2ec8ae4bec77ae4c5dac798a44e497d33be5dd7f (patch) | |
tree | fc96f4194c338567494e42343c7f0283a5bf4da4 /sym_common.txt | |
parent | 575440fb78a4a8fe0b5e8243a363c66addcfb05b (diff) |
Preliminary support for English rev0 debug. Matching but still needs
cleaning up.
Rename DEBUG_TRANSLATE to DEBUG_FIX now that we have actual English
Debug ROMs.
Add Sapphire German "first edition" debug support, now that we have a
hash for it.
Fix an obvious nonmatching.
Diffstat (limited to 'sym_common.txt')
-rw-r--r-- | sym_common.txt | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/sym_common.txt b/sym_common.txt index fe75d4d0e..6ccc79be0 100644 --- a/sym_common.txt +++ b/sym_common.txt @@ -6,12 +6,12 @@ // main.c -#if DEBUG -/*. += 0x18;*/ +#if (DEBUG && ENGLISH && REVISION == 0) +. += 0x8; #endif SYMBOL(gKeyRepeatStartDelay, 4) SYMBOL(gLinkTransferringData, 4) -#if DEBUG +#if (DEBUG && !(ENGLISH && REVISION == 0)) . += 0x8; #endif SYMBOL(gMain, 1088) @@ -197,6 +197,10 @@ SYMBOL(gMenuCallback, 4) #if DEBUG SYMBOL(gUnknown_Debug_03004BD0, 4) +// TODO: see if this is in rev1+ +#if (ENGLISH && REVISION == 0) +SYMBOL(gUnknown_Debug_Murakawa2, 4) +#endif #endif // sound.c @@ -204,8 +208,12 @@ SYMBOL(gDisableMusic, 4) #if DEBUG unk_debug_common_2 = .; +#if (ENGLISH && REVISION == 0) +. += 0x4; +#else . += 0x8; #endif +#endif // battle_anim.c SYMBOL(gSoundAnimFramesToWait, 4) |