summaryrefslogtreecommitdiff
path: root/src/d/d_particle.cpp
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2026-07-31 13:14:06 -0400
committerGitHub <noreply@github.com>2026-07-31 13:14:06 -0400
commit641268e340402a965c90610f7c176d95e346c644 (patch)
treec5bda92c3b1dd3803ea0426096e85521d60ee47e /src/d/d_particle.cpp
parentc9b297003337a24d650222d7b28fc7a073206824 (diff)
TVec template fixes (#1140)
* TVec template fixes * Fix cubic
Diffstat (limited to 'src/d/d_particle.cpp')
-rw-r--r--src/d/d_particle.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/d/d_particle.cpp b/src/d/d_particle.cpp
index d240c68b..16d9e36a 100644
--- a/src/d/d_particle.cpp
+++ b/src/d/d_particle.cpp
@@ -1049,7 +1049,7 @@ void dPa_waveEcallBack::executeAfter(JPABaseEmitter* emitter) {
}
f32 speed = mVelFade1 * vel * mVelFade2;
- JGeometry::TVec3<s16> rot(0, mpRot->y, 0);
+ JGeometry::TVec3<s16> rot((s16)0, mpRot->y, (s16)0);
emitter->setGlobalRotation(rot);
if (std::fabsf(speed - mVel) > mVelSpeed) {