diff options
| author | Caroline Madsen <69010899+randomsalience@users.noreply.github.com> | 2024-01-06 01:48:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-05 22:48:32 -0800 |
| commit | dea6243c35dbc373e39c3f4afcb1aba0063065f0 (patch) | |
| tree | 2f8309b90f538386e50ad45007f3bfe67034dfa0 /src/d/d_insect.cpp | |
| parent | 2e15998e7ac105f2e9977cb5a0d5c3a0111cad89 (diff) | |
Fix type signatures of cLib_*Bit functions (#2024)
Diffstat (limited to 'src/d/d_insect.cpp')
| -rw-r--r-- | src/d/d_insect.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_insect.cpp b/src/d/d_insect.cpp index 0fbd15c59e..57680e0178 100644 --- a/src/d/d_insect.cpp +++ b/src/d/d_insect.cpp @@ -26,7 +26,7 @@ void dInsect_c::Insect_GetDemoMain() { switch (m_mode) { case 0: if (fopAcM_checkCarryNow(this)) { - cLib_offBit(mAttentionInfo.mFlags, 0x10); + cLib_offBit<u32>(mAttentionInfo.mFlags, 0x10); fopAcM_cancelCarryNow(this); fopAcM_orderItemEvent(this, 0, 0); mEvtInfo.i_onCondition(dEvtCnd_CANGETITEM_e); @@ -39,7 +39,7 @@ void dInsect_c::Insect_GetDemoMain() { field_0x585 = 1; } } else { - cLib_onBit(mAttentionInfo.mFlags, 0x10); + cLib_onBit<u32>(mAttentionInfo.mFlags, 0x10); } break; case 1: |
