MxFlcPresenter: vtable70

This commit is contained in:
Joshua Peisach 2023-11-22 08:56:01 -05:00
parent d46f2e094b
commit 106453c9fb
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 16 additions and 0 deletions

View File

@ -23,6 +23,7 @@ MxFlcPresenter::~MxFlcPresenter()
delete this->m_unk64;
}
}
<<<<<<< HEAD
// OFFSET: LEGO1 0x100b3620
void MxFlcPresenter::VTable0x70()
@ -33,3 +34,16 @@ void MxFlcPresenter::VTable0x70()
if (pal)
delete pal;
}
||||||| parent of 679bbcf (MxFlcPresenter: vtable70)
=======
// OFFSET: LEGO1 0x100b3620
void MxFlcPresenter::vtable70()
{
MxPalette* pal = m_bitmap->CreatePalette();
MVideoManager()->RealizePalette(pal);
if (pal) {
delete pal;
}
}
>>>>>>> 679bbcf (MxFlcPresenter: vtable70)

View File

@ -26,6 +26,8 @@ class MxFlcPresenter : public MxVideoPresenter {
virtual void VTable0x70() override; // vtable+0x70
virtual void vtable70() override; // vtable+0x74
undefined4* m_unk64;
};