fix functions not returning values (#2942)

* fix functions not returning values

* implement functions that should return values
This commit is contained in:
Jcw87
2025-12-11 15:31:44 -08:00
committed by GitHub
parent 2c6986f1cc
commit ae4ad9f477
40 changed files with 146 additions and 61 deletions
+2 -2
View File
@@ -234,7 +234,7 @@ void daObjIsuChild_c::create(daObjNagaisu_c* i_parent, dCcD_Stts* i_ccStts) {
}
}
int daObjIsuChild_c::execute() {
void daObjIsuChild_c::execute() {
if (!mIsDead) {
if (chkHit()) {
callEmt();
@@ -249,7 +249,7 @@ int daObjIsuChild_c::execute() {
}
}
int daObjIsuChild_c::draw(dMdl_c* i_mdl) {
void daObjIsuChild_c::draw(dMdl_c* i_mdl) {
if (!mIsDead) {
mDoMtx_stack_c::transS(mPos.x, mPos.y, mPos.z);
mDoMtx_stack_c::YrotM(-0x8000);