diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-25 18:05:07 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-11-25 18:05:07 -0500 |
| commit | 897b22f9369b4b06eb8eb261ea6563f2dd91a223 (patch) | |
| tree | 7fa49889730cfa094294fa4a1cf2c16858236ab9 /src/d/d_throwstone.cpp | |
| parent | 4a496727a9f7bcfb69e22de284af65d62d377723 (diff) | |
Move more actor classes to headers
Diffstat (limited to 'src/d/d_throwstone.cpp')
| -rw-r--r-- | src/d/d_throwstone.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_throwstone.cpp b/src/d/d_throwstone.cpp index a28df76c..eb12db2e 100644 --- a/src/d/d_throwstone.cpp +++ b/src/d/d_throwstone.cpp @@ -29,7 +29,7 @@ public: const char daThrowstone_c::M_arcname[] = "Aisi"; /* 8023B544-8023B564 .text CheckCreateHeap__FP10fopAc_ac_c */ -static s32 CheckCreateHeap(fopAc_ac_c* i_actor) { +static BOOL CheckCreateHeap(fopAc_ac_c* i_actor) { daThrowstone_c* i_this = (daThrowstone_c*)i_actor; return i_this->CreateHeap(); } @@ -50,7 +50,7 @@ s32 daThrowstone_c::_create() { if (result == cPhs_COMPLEATE_e) { fopAcM_SetupActor(this, daThrowstone_c); - if (!fopAcM_entrySolidHeap(this, (heapCallbackFunc)CheckCreateHeap, 0x4C0)) { + if (!fopAcM_entrySolidHeap(this, CheckCreateHeap, 0x4C0)) { result = cPhs_ERROR_e; } else { mDoMtx_stack_c::transS(current.pos); |
