diff options
| author | Caroline Madsen <69010899+randomsalience@users.noreply.github.com> | 2024-10-19 04:54:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-19 11:54:40 +0300 |
| commit | 69dc7cbbf15ece9533ca6afc85f9500ba1b2647b (patch) | |
| tree | a8ff6e3f3f5113d2185100af36df67c9e568d0d1 /src/d/d_com_static.cpp | |
| parent | 0652b2c7b3722e40ded1a34f8846b8ae9d8fa4eb (diff) | |
d_a_b_yo and d_a_b_yo_ice mostly OK (#2219)
Diffstat (limited to 'src/d/d_com_static.cpp')
| -rw-r--r-- | src/d/d_com_static.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_com_static.cpp b/src/d/d_com_static.cpp index 9af005c478..a8cf5093b4 100644 --- a/src/d/d_com_static.cpp +++ b/src/d/d_com_static.cpp @@ -502,13 +502,13 @@ int daMirror_c::entry(J3DModel* param_0) { } /* 80031990-800319C8 02C2D0 0038+00 0/0 0/0 2/2 .text remove__10daMirror_cFv */ -int daMirror_c::remove() { +bool daMirror_c::remove() { if (m_myObj == NULL) { - return 0; + return false; } fopAcM_delete(m_myObj); - return 1; + return true; } /* ############################################################################################## */ |
