From 358010fb49aa47ae32b6dd0ab736955d8f365a4d Mon Sep 17 00:00:00 2001 From: Dylan Ascencio Date: Mon, 11 Sep 2023 20:56:48 -0400 Subject: [PATCH] Revert changes to isStageBossEnemy and isStageLife --- include/d/d_com_inf_game.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/d/d_com_inf_game.h b/include/d/d_com_inf_game.h index f88ab2312..0318e26a0 100644 --- a/include/d/d_com_inf_game.h +++ b/include/d/d_com_inf_game.h @@ -378,7 +378,7 @@ inline void dComIfGs_onSaveTbox(int i_stageNo, int i_no) { g_dComIfG_gameInfo.save.getSavedata().getSave(i_stageNo).getBit().onTbox(i_no); } -BOOL dComIfGs_isStageBossEnemy(int i_stageNo) { +inline BOOL dComIfGs_isStageBossEnemy() { return g_dComIfG_gameInfo.save.getMemory().getBit().isStageBossEnemy(); } @@ -386,7 +386,7 @@ inline void dComIfGs_onStageLife() { g_dComIfG_gameInfo.save.getMemory().getBit().onStageLife(); } -BOOL dComIfGs_isStageLife(int i_stageNo) { +inline BOOL dComIfGs_isStageLife() { return g_dComIfG_gameInfo.save.getMemory().getBit().isStageLife(); }