Pad all single-digit hexadecimal values with zero (#504)

* Pad all single-digit hexadecimal values with zero

* One more fix
This commit is contained in:
Christian Semmler
2024-01-29 16:17:17 -05:00
committed by GitHub
parent 35def3013a
commit bcdddd4c7e
147 changed files with 311 additions and 311 deletions

View File

@@ -16,8 +16,8 @@ public:
inline MxNotificationParam* GetParam() { return m_param; }
private:
MxCore* m_target; // 0x0
MxNotificationParam* m_param; // 0x4
MxCore* m_target; // 0x00
MxNotificationParam* m_param; // 0x04
};
class MxIdList : public list<MxU32> {};
@@ -27,8 +27,8 @@ class MxNotificationPtrList : public list<MxNotification*> {};
// VTABLE: LEGO1 0x100dc078
class MxNotificationManager : public MxCore {
private:
MxNotificationPtrList* m_queue; // 0x8
MxNotificationPtrList* m_sendList; // 0xc
MxNotificationPtrList* m_queue; // 0x08
MxNotificationPtrList* m_sendList; // 0x0c
MxCriticalSection m_lock; // 0x10
MxS32 m_unk0x2c; // 0x2c
MxIdList m_listenerIds; // 0x30
@@ -36,9 +36,9 @@ private:
public:
MxNotificationManager();
virtual ~MxNotificationManager(); // vtable+0x0 (scalar deleting destructor)
virtual ~MxNotificationManager(); // vtable+0x00 (scalar deleting destructor)
virtual MxResult Tickle(); // vtable+0x8
virtual MxResult Tickle(); // vtable+0x08
// TODO: Where does this method come from?
virtual MxResult Create(MxU32 p_frequencyMS, MxBool p_createThread); // vtable+0x14
void Register(MxCore* p_listener);