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_yamit.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_yamit.cpp')
| -rw-r--r-- | src/d/actor/d_a_npc_yamit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/actor/d_a_npc_yamit.cpp b/src/d/actor/d_a_npc_yamit.cpp index f5faefdf97..8af916ed0d 100644 --- a/src/d/actor/d_a_npc_yamit.cpp +++ b/src/d/actor/d_a_npc_yamit.cpp @@ -199,7 +199,7 @@ cPhs_Step daNpc_yamiT_c::create() { int daNpc_yamiT_c::CreateHeap() { J3DModelData* mdlData_p = NULL; J3DModel* model = NULL; - int bmdIdx = mTwilight == true ? NONE : NONE; + int bmdIdx = mTwilight == TRUE ? NONE : NONE; int res_name_idx = l_bmdData[bmdIdx][1]; int index = l_bmdData[bmdIdx][0]; |
