m_Do_main OK for demo

This commit is contained in:
LagoLunatic
2025-06-23 21:56:41 -04:00
parent cabd8356fe
commit 5ea6edc4b2
3 changed files with 21 additions and 27 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ public:
/* vt[03] */ virtual void callAllDisposer();
/* vt[04] */ virtual u32 getHeapType() = 0;
/* vt[05] */ virtual bool check() = 0;
/* vt[06] */ virtual bool dump_sort();
/* vt[06] */ virtual bool dump_sort() { return true; }
/* vt[07] */ virtual bool dump() = 0;
/* vt[08] */ virtual void do_destroy() = 0;
/* vt[09] */ virtual void* do_alloc(u32 size, int alignment) = 0;
+2 -2
View File
@@ -110,8 +110,8 @@ public:
JUTGamePadRecordBase* getPadReplay() const { return mPadReplay; }
JUTGamePadRecordBase* getPadRecord() const { return mPadRecord; }
u32 testButton(u32 button) const { return getButton() & button; }
u32 testTrigger(u32 button) const { return getTrigger() & button; }
bool testButton(u32 button) const { return mButton.mButton & button; }
bool testTrigger(u32 button) const { return mButton.mTrigger & button; }
bool isPushing3ButtonReset() const {
bool isPushingReset = false;