naming conventions

This commit is contained in:
Joshua Peisach 2023-12-23 21:52:39 -05:00
parent 5d81276aa7
commit 6a5f4f7467
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 6 additions and 6 deletions

View File

@ -8,7 +8,7 @@ DECOMP_SIZE_ASSERT(JukeBox, 0x104)
// FUNCTION: LEGO1 0x1005d660
JukeBox::JukeBox()
{
m_unk100 = 0;
m_unkfc = 0;
m_unk0x100 = 0;
m_unk0xfc = 0;
NotificationManager()->Register(this);
}

View File

@ -24,10 +24,10 @@ class JukeBox : public LegoWorld {
}
private:
undefined m_unkf8[4];
undefined4 m_unkfc;
undefined2 m_unk100;
undefined m_unk102[2];
undefined m_unk0xf8[4];
undefined4 m_unk0xfc;
undefined2 m_unk0x100;
undefined m_unk0x102[2];
};
#endif // JUKEBOX_H