* Initial M3d Pass
* `m_bmdl` and `m_bline` left

---------

Co-authored-by: elijah-thomas774 <elijahthomas774@gmail.com>
Co-authored-by: Elijah Thomas <42302100+elijah-thomas774@users.noreply.github.com>
This commit is contained in:
robojumper
2024-09-12 22:36:34 +02:00
committed by GitHub
parent e2c4bb7be7
commit 1180e1f486
150 changed files with 5890 additions and 818 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ STATE_DEFINE(dTgRockBoat_c, Wait);
int dTgRockBoat_c::create() {
mStateMgr.changeState(StateID_Wait);
cooldown = 1;
return 1;
return SUCCEEDED;
}
int dTgRockBoat_c::doDelete() {
+1 -1
View File
@@ -40,7 +40,7 @@ int dTgSndAr_c::create() {
ac->setBit_field_0xE8(params & 0xFF);
}
}
return 1;
return SUCCEEDED;
}
int dTgSndAr_c::doDelete() {
+1 -1
View File
@@ -7,7 +7,7 @@ int dTgSndMg_c::create() {
s8 tmpRoomId = roomid;
addActorToRoom(-1);
roomid = tmpRoomId;
return 1;
return SUCCEEDED;
}
int dTgSndMg_c::doDelete() {
+1 -1
View File
@@ -27,7 +27,7 @@ int dTgTimer_c::create() {
break;
}
resetTimer();
return 1;
return SUCCEEDED;
}
int dTgTimer_c::actorExecute() {
+1 -1
View File
@@ -12,7 +12,7 @@ int dTgTumbleWeed_c::create() {
tumbleweedTimer = 0;
windTimer = 0x96;
mStateMgr.changeState(StateID_AreaOut);
return 1;
return SUCCEEDED;
}
u16 decr(u16 *num);