Match known functions in LegoPhonemePresenter

This commit is contained in:
Joshua Peisach 2023-07-23 19:25:14 -04:00
parent 213ce73959
commit 216e528bdf
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 14 additions and 5 deletions

View File

@ -6,14 +6,16 @@ LegoPhonemePresenter::LegoPhonemePresenter()
Init(); Init();
} }
// OFFSET: LEGO1 0x1004e3b0 STUB // OFFSET: LEGO1 0x1004e3b0
void LegoPhonemePresenter::Init() void LegoPhonemePresenter::Init()
{ {
// TODO m_unk68 = 0;
m_unk6c = 0;
m_unk70 = 0;
m_unk84 = 0;
} }
// OFFSET: LEGO1 0x1004e340 STUB // OFFSET: LEGO1 0x1004e340
LegoPhonemePresenter::~LegoPhonemePresenter() LegoPhonemePresenter::~LegoPhonemePresenter()
{ {
// TODO
} }

View File

@ -1,7 +1,10 @@
#ifndef LEGOPHONEMEPRESENTER_H #ifndef LEGOPHONEMEPRESENTER_H
#define LEGOPHONEMEPRESENTER_H #define LEGOPHONEMEPRESENTER_H
#include "decomp.h"
#include "mxflcpresenter.h" #include "mxflcpresenter.h"
#include "mxstring.h"
#include "mxtypes.h"
// VTABLE 0x100d8040 // VTABLE 0x100d8040
// SIZE 0x88 // SIZE 0x88
@ -20,7 +23,11 @@ class LegoPhonemePresenter : public MxFlcPresenter
private: private:
void Init(); void Init();
int m_unk68;
int m_unk6c;
undefined m_unk70;
MxString m_string; // 0x74
undefined m_unk84;
}; };
#endif // LEGOPHONEMEPRESENTER_H #endif // LEGOPHONEMEPRESENTER_H