diff options
| author | Pieter-Jan Briers <pieterjan.briers+git@gmail.com> | 2026-06-20 03:26:56 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-19 18:26:56 -0700 |
| commit | 8d43c80c42f1a4c3835a2124ebeaf044c90e3839 (patch) | |
| tree | 8ee87394a9003a4ed4d8b0e19b501eff21d02c61 /src/d/actor/d_a_npc_saru.cpp | |
| parent | fc1515fe6177e351b6e9c182979bcd57a1c9cd9f (diff) | |
Code cleanup to fix warnings in Dusklight (#3167)
Mostly bool/int mixing
Diffstat (limited to 'src/d/actor/d_a_npc_saru.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_saru.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/d/actor/d_a_npc_saru.cpp b/src/d/actor/d_a_npc_saru.cpp index 671acb7e4d..827ec925c4 100644 --- a/src/d/actor/d_a_npc_saru.cpp +++ b/src/d/actor/d_a_npc_saru.cpp @@ -367,7 +367,7 @@ int daNpc_Saru_c::CreateHeap() { 2, 3, }; - int bmdIdx = mTwilight == true ? TRUE : FALSE; + int bmdIdx = mTwilight == TRUE ? TRUE : FALSE; J3DModelData* modelData = static_cast<J3DModelData*>(dComIfG_getObjectRes(l_resNameList[l_bmdData[bmdIdx][1]], l_bmdData[bmdIdx][0])); if (modelData == NULL) { return 0; @@ -620,7 +620,7 @@ BOOL daNpc_Saru_c::evtCutProc() { void daNpc_Saru_c::action() { fopAc_ac_c* actor_p = NULL; - if (mTwilight == false) { + if (mTwilight == FALSE) { actor_p = hitChk(&field_0xe4c, -1); } @@ -743,7 +743,7 @@ void daNpc_Saru_c::drawOtherMdl() { Mtx mtx; J3DModel* model = mpMorf[0]->getModel(); for (int i = 0; i < 2; i++) { - if (mpRoseModels[i] != NULL && ((i == 0 && mTwilight == false) || (i == 1 && mTwilight != false))) { + if (mpRoseModels[i] != NULL && ((i == 0 && mTwilight == FALSE) || (i == 1 && mTwilight != false))) { g_env_light.setLightTevColorType_MAJI(mpRoseModels[i], &tevStr); mDoMtx_stack_c::copy(model->getAnmMtx(jointNo[i])); cMtx_copy(mDoMtx_stack_c::get(), mtx); @@ -780,7 +780,7 @@ int daNpc_Saru_c::setAction(int (daNpc_Saru_c::*action)(void*)) { } void daNpc_Saru_c::setSe() { - if (cM3d_IsZero(mpMorf[0]->getPlaySpeed()) <= 0) { + if (cM3d_IsZero(mpMorf[0]->getPlaySpeed()) == false) { if ((J3DAnmTransform*)dComIfG_getObjectRes(l_resNameList[l_motionAnmData[25].mBckArcIdx], l_motionAnmData[25].mBckFileIdx) == mpMorf[0]->getAnm()) { if (mpMorf[0]->checkFrame(0.0f)) { mSound.startCreatureVoice(Z2SE_KOSARU_V_WALK, -1); @@ -1088,7 +1088,7 @@ int daNpc_Saru_c::wait(void* param_1) { } } - if (mPlayerActorMngr.getActorP() != NULL && mTwilight == false) { + if (mPlayerActorMngr.getActorP() != NULL && mTwilight == FALSE) { mJntAnm.lookPlayer(0); if (!chkActorInSight(mPlayerActorMngr.getActorP(), mAttnFovY, mCurAngle.y)) { mJntAnm.lookNone(0); |
