Misc matches, including dComIfGp_event_runCheck fixes

This commit is contained in:
LagoLunatic
2024-02-05 02:13:21 -05:00
parent 0d899b50f5
commit 76083c90ea
7 changed files with 17 additions and 28 deletions
+1 -1
View File
@@ -2383,7 +2383,7 @@ inline void dComIfGp_setButtonActionMode(u8 mode) {
* === EVENT ===
*/
inline bool dComIfGp_event_runCheck() {
inline BOOL dComIfGp_event_runCheck() {
return g_dComIfG_gameInfo.play.getEvent().runCheck();
}
+1 -1
View File
@@ -119,7 +119,7 @@ public:
void offEventFlag(u16 flag) { mEventFlag &= ~flag; }
void reset() { onEventFlag(8); }
bool runCheck() { return mMode != dEvtMode_NONE_e; }
BOOL runCheck() { return mMode != dEvtMode_NONE_e; }
u32 getMode() { return mMode & 0xFF; } // &0xFF added to fix dEvt_control_c::moveApproval, probably fakematch
void checkHind(u16) {}