diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-08-03 16:37:34 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-08-03 16:37:34 -0400 |
| commit | 8a602cb87ff104df82502d32e6bd6cd00bbac513 (patch) | |
| tree | f18a0f62c9b678e74cbc41762c355ab36bb7cfd5 /src | |
| parent | cb6a9205db1b6796274a0d475464eefe1f1a304f (diff) | |
fix compilation error
Diffstat (limited to 'src')
| -rw-r--r-- | src/d/actor/d_a_salvage_tbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/actor/d_a_salvage_tbox.cpp b/src/d/actor/d_a_salvage_tbox.cpp index 0773fe83..de4c4717 100644 --- a/src/d/actor/d_a_salvage_tbox.cpp +++ b/src/d/actor/d_a_salvage_tbox.cpp @@ -69,7 +69,7 @@ void daSTBox_shadowEcallBack_c::execute(JPABaseEmitter* emitter) { } else { yAngle = (s16)(mpAngle->y + 0x8000); } - JGeometry::TVec3<s16> rotation(0, yAngle, 0); + JGeometry::TVec3<s16> rotation((s16)0, yAngle, (s16)0); emitter->setGlobalRotation(rotation); waterY = mpWaterY; if (waterY < 0.0f || waterY > 2000.0f) { |
