refactor: change unk50 in MxVideoManager to LPDIRECTDRAW

This commit is contained in:
ktkaufman03 2023-07-04 21:44:24 -04:00
parent 4097e0fa0d
commit 8734935beb
No known key found for this signature in database
GPG Key ID: 1E1BF4F2F99E03BB
2 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ MxVideoManager::MxVideoManager()
// OFFSET: LEGO1 0x100be320
int MxVideoManager::Init()
{
this->m_unk50 = 0;
this->m_pDirectDraw = NULL;
this->m_unk54 = NULL;
this->m_unk58 = NULL;
this->m_unk5c = 0;

View File

@ -21,10 +21,10 @@ class MxVideoManager : public MxUnknown100dc6b0
int Init();
inline MxVideoParam& GetVideoParam() { return this->m_videoParam; }
inline LPDIRECTDRAW GetDirectDraw() { return this->m_pDirectDraw; }
private:
MxVideoParam m_videoParam;
int m_unk50;
LPDIRECTDRAW m_pDirectDraw;
LPDIRECTDRAWSURFACE m_unk54;
void* m_unk58;
int m_unk5c;