add offset comments

This commit is contained in:
Misha 2023-11-08 10:44:33 -05:00
parent aa73c2a70f
commit 763b248f37
No known key found for this signature in database
GPG Key ID: 8441D12AEF33FED8

View File

@ -37,15 +37,15 @@ class LegoVideoManager : public MxVideoManager {
private: private:
undefined4 m_unk64; undefined4 m_unk64;
Lego3DManager* m_3dManager; Lego3DManager* m_3dManager; // 0x68
undefined4 m_unk6c; undefined4 m_unk6c;
undefined4 m_unk70; undefined4 m_unk70;
MxDirect3D* m_direct3d; MxDirect3D* m_direct3d; // 0x74
undefined4 m_unk0x78[27]; undefined4 m_unk0x78[27];
MxBool m_unk0xe4; MxBool m_unk0xe4;
MxBool m_unk0xe5; MxBool m_unk0xe5;
MxBool m_unk0xe6; MxBool m_unk0xe6;
PALETTEENTRY m_paletteEntries[256]; PALETTEENTRY m_paletteEntries[256]; // 0xe7
char m_padding0x4e7; char m_padding0x4e7;
undefined4 m_unk4e8; undefined4 m_unk4e8;
MxBool m_isFullscreenMovie; // 0x4ec MxBool m_isFullscreenMovie; // 0x4ec
@ -54,20 +54,20 @@ class LegoVideoManager : public MxVideoManager {
undefined m_padding0x4f4[8]; undefined m_padding0x4f4[8];
MxBool m_unk0x500; MxBool m_unk0x500;
MxBool m_cursorMoved; // 0x501 MxBool m_cursorMoved; // 0x501
MxS32 m_cursorXCopy; MxS32 m_cursorXCopy; // 0x504
MxS32 m_cursorYCopy; MxS32 m_cursorYCopy; // 0x508
MxS32 m_cursorX; // 0x50c MxS32 m_cursorX; // 0x50c
MxS32 m_cursorY; // 0x510 MxS32 m_cursorY; // 0x510
undefined4 m_unk0x514; undefined4 m_unk0x514;
undefined m_pad0x518[0x10]; undefined m_pad0x518[0x10];
undefined4 m_unk0x528; undefined4 m_unk0x528;
MxBool m_drawFPS; MxBool m_drawFPS; // 0x52c
RECT m_fpsRect; RECT m_fpsRect; // 0x530
HFONT m_arialFont; HFONT m_arialFont; // 0x540
SIZE m_fpsSize; SIZE m_fpsSize; // 0x544
undefined m_pad0x54c[8]; undefined m_pad0x54c[8];
undefined m_unk0x554; undefined m_unk0x554;
MxBool m_initialized; MxBool m_initialized; // 0x555
undefined m_pad0x556[0x39]; undefined m_pad0x556[0x39];
}; };