diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-07-31 13:14:06 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-31 13:14:06 -0400 |
| commit | 641268e340402a965c90610f7c176d95e346c644 (patch) | |
| tree | c5bda92c3b1dd3803ea0426096e85521d60ee47e /src/d/d_particle.cpp | |
| parent | c9b297003337a24d650222d7b28fc7a073206824 (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.cpp | 2 |
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) { |
