diff options
| author | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-11-17 02:57:00 -0300 |
|---|---|---|
| committer | Sonic Dreamcaster <alejandro.asenjo88@gmail.com> | 2024-11-17 02:57:00 -0300 |
| commit | 02b3449e3365314200804ee13d10a7886b4b4446 (patch) | |
| tree | 75df82a0fdde4574ada3c3122499235cb3277a15 /src/engine/fox_display.c | |
| parent | c0feb5a5c543cf15e2c5e96f7c2b51239a4aa81d (diff) | |
boss killer call
Diffstat (limited to 'src/engine/fox_display.c')
| -rw-r--r-- | src/engine/fox_display.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/engine/fox_display.c b/src/engine/fox_display.c index 14936f69..b79ba061 100644 --- a/src/engine/fox_display.c +++ b/src/engine/fox_display.c @@ -27,6 +27,10 @@ s32 gTeamHelpTimer = 0; f32 D_display_800CA23C[3] = { 0.5f, 0.25f, 0.25f }; f32 D_display_800CA248[3] = { 2.0f, 1.0f, 0.5f }; +#if DEBUG_BOSS_KILLER == 1 +void KillBoss(void); +#endif + void Display_DrawHelpAlert(void) { bool sp7C; f32 sp78; @@ -1979,6 +1983,10 @@ void Display_Update(void) { sPlayersVisible[gPlayerNum] = false; Matrix_Pop(&gGfxMatrix); +#if DEBUG_BOSS_KILLER == 1 + KillBoss(); +#endif + if (CVarGetInteger("gDebugSpeedControl", 0) == 1) { Player* player = gPlayer; static s32 prevSpeed; |
