diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-04-09 11:14:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-09 11:14:37 -0700 |
commit | 84c5825c8ecc9804313ec3b1a8dcc0271ee4c2cc (patch) | |
tree | c90f705e43f2b1728ed1e0400312b7d6c5c81c21 /include/debug.h | |
parent | 562dcc4bcdc14d5b6c0bb2a638410156945cdd41 (diff) | |
parent | 91f869d1e6ed1ef12ad4b2255d3762e3b1b51429 (diff) |
Merge pull request #589 from PikalaxALT/unk_debug_menu_3
Unk Debug Menu 3 and Start Menu Debug
Diffstat (limited to 'include/debug.h')
-rw-r--r-- | include/debug.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/include/debug.h b/include/debug.h index 469560b9e..d090f8bed 100644 --- a/include/debug.h +++ b/include/debug.h @@ -1,15 +1,22 @@ #ifndef GUARD_DEBUG_H #define GUARD_DEBUG_H +struct UnkDebugMenu3Items { + const u8 * text; + size_t (*func)(u8 * dest); +}; + // start_menu_debug void DebugMenu_8077048(void); // matsuda_debug_menu void sub_80AAF30(void); void Crash(const u8 *text); +bool8 InitMatsudaDebugMenu(void); // tomomichi_debug_menu void debug_nullsub_66(void); +bool8 InitTomomichiDebugWindow(void); // sound_check_menu void CB2_StartSoundCheckMenu(void); @@ -17,4 +24,34 @@ void CB2_StartSoundCheckMenu(void); // nakamura_debug_menu void NakaGenderTest(void); +// unk debug menu 3 +extern const u8 gUnknown_Debug_842E350; +extern const struct UnkDebugMenu3Items gUnknown_Debug_842E2D0[]; + +// unknown debug menu +int InitSogabeDebugMenu(void); + +// kagaya_debug_menu +bool8 InitKagayaDebugMenu_A(void); +bool8 debug_sub_80B0770(void); +bool8 debug_sub_80B07B0(void); +bool8 debug_sub_80B0800(void); + +// nohara_debug_menu +bool8 InitNoharaDebugMenu(void); + +// watanabe_debug_menu +void InitWatanabeDebugMenu(void); +void InitSizeComparison(void); +void InitBattleForDebug(void); +void InitCreatePokemon(void); +void InitSeePokemonGraphics(void); +void InitSeeTrainers(void); + +// taya_debug_menu +bool8 InitTayaDebugWindow(void); + +// nakamura_debug_menu +bool8 InitNakamuraDebugMenu(void); + #endif // GUARD_DEBUG_H |