d_a_npc_people Almost OK (#658)

* daNpcPeople Work

* Oops

Somehow I break this file every time I touch it
This commit is contained in:
SuperDude88
2024-06-16 01:55:31 -04:00
committed by GitHub
parent e855019ab4
commit 3f08458809
13 changed files with 8099 additions and 373 deletions
+4 -4
View File
@@ -211,13 +211,13 @@ const u16 daDai_c::m_savelabel[] = {
};
/* 800568A8-800568B0 .text getMaxDaiza__7daDai_cFv */
s8 daDai_c::getMaxDaiza() {
return mNowDaizaNum;
int daDai_c::getMaxDaiza() {
return (u8)mNowDaizaNum; // cast is weird, but it's the only way I've found to match its uses in d_a_npc_people
}
/* 800568B0-800568B8 .text getDaizaSetItemNum__7daDai_cFv */
s8 daDai_c::getDaizaSetItemNum() {
return mNowItemNum;
int daDai_c::getDaizaSetItemNum() {
return (u8)mNowItemNum; // cast is weird, but it's the only way I've found to match its uses in d_a_npc_people
}
bool daNpc_Os_c::m_playerRoom[3] = { false, false, false };