diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-03-23 12:11:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 12:11:10 -0500 |
commit | 2fd4f339b42c010191c199772b09ac34c580de94 (patch) | |
tree | e562899f35861ece70c292602fe6aac2f50906bf /src/debug.c | |
parent | 7b142311a7294c4c7a943870fa5f24f0fbea604a (diff) |
Miscellaneous Work (Again) (#31)
* move some personality data from asm to C
* combine personality_test files and add my close attempt at RedrawPartnerSelectionMenu
* decomp some more wonder mail funcs and label some more data
* lots of data splitting and move some to src
* split out more dungeon data
* continue splitting out more dungeon data
* doc rescue team rank/pts funcs/data and exclusive pokemon ewram
* doc more sound things and decomp a func
* decomp LoadTeamRankBadge and label some data members
* split out rescue team and text util stuff
* forgot a constant
* match a few funcs and clean up a few
* cleaned up sub_80A28B4
Diffstat (limited to 'src/debug.c')
-rw-r--r-- | src/debug.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/debug.c b/src/debug.c index 4482df1..b6f4ee7 100644 --- a/src/debug.c +++ b/src/debug.c @@ -6,9 +6,8 @@ extern void Hang(); -extern u8 gUnknown_203B150; - extern bool32 gNDS_DebugEnabled; +extern u8 gUnknown_203B150; extern const char gUnknown_80D421C[]; extern const char gNotMountText[]; @@ -75,16 +74,19 @@ void nullsub_27(void) { } +// Unused void sub_8011B08(void) { gUnknown_203B150 = 1; } +// Unused void sub_8011B14(void) { gUnknown_203B150 = 0; } +// Unused u8 sub_8011B20(void) { gUnknown_203B150 = !gUnknown_203B150; |