mirror of
https://github.com/isledecomp/isle.git
synced 2026-01-20 23:01:16 +00:00
refactor: change unk50 in MxVideoManager to LPDIRECTDRAW
This commit is contained in:
parent
4097e0fa0d
commit
8734935beb
@ -23,7 +23,7 @@ MxVideoManager::MxVideoManager()
|
|||||||
// OFFSET: LEGO1 0x100be320
|
// OFFSET: LEGO1 0x100be320
|
||||||
int MxVideoManager::Init()
|
int MxVideoManager::Init()
|
||||||
{
|
{
|
||||||
this->m_unk50 = 0;
|
this->m_pDirectDraw = NULL;
|
||||||
this->m_unk54 = NULL;
|
this->m_unk54 = NULL;
|
||||||
this->m_unk58 = NULL;
|
this->m_unk58 = NULL;
|
||||||
this->m_unk5c = 0;
|
this->m_unk5c = 0;
|
||||||
|
|||||||
@ -21,10 +21,10 @@ class MxVideoManager : public MxUnknown100dc6b0
|
|||||||
int Init();
|
int Init();
|
||||||
|
|
||||||
inline MxVideoParam& GetVideoParam() { return this->m_videoParam; }
|
inline MxVideoParam& GetVideoParam() { return this->m_videoParam; }
|
||||||
|
inline LPDIRECTDRAW GetDirectDraw() { return this->m_pDirectDraw; }
|
||||||
private:
|
private:
|
||||||
MxVideoParam m_videoParam;
|
MxVideoParam m_videoParam;
|
||||||
int m_unk50;
|
LPDIRECTDRAW m_pDirectDraw;
|
||||||
LPDIRECTDRAWSURFACE m_unk54;
|
LPDIRECTDRAWSURFACE m_unk54;
|
||||||
void* m_unk58;
|
void* m_unk58;
|
||||||
int m_unk5c;
|
int m_unk5c;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user