MxFlcPresenter vtable70, m_unk64 (#304)

* MxFlcPresenter: vtable70

* begin work on MxFlcPresenter's m_unk64

* Add another function that makes use of the FLIC header

* Remove space

---------

Co-authored-by: Christian Semmler <mail@csemmler.com>
This commit is contained in:
Joshua Peisach
2023-11-29 07:35:32 -05:00
committed by GitHub
parent 3d48cdede1
commit f7dcdf9894
6 changed files with 84 additions and 5 deletions

View File

@@ -4,6 +4,8 @@
#include "decomp.h"
#include "mxvideopresenter.h"
#include <flic.h>
// VTABLE 0x100dc2c0
// SIZE 0x68
class MxFlcPresenter : public MxVideoPresenter {
@@ -24,9 +26,12 @@ public:
return "MxFlcPresenter";
}
virtual void VTable0x70() override; // vtable+0x70
virtual void LoadHeader(MxStreamChunk* p_chunk) override; // vtable+0x5c
virtual void CreateBitmap() override; // vtable+0x60
virtual void VTable0x70() override; // vtable+0x70
undefined4* m_unk64;
protected:
FLIC_HEADER* m_flicHeader;
};
#endif // MXFLCPRESENTER_H