diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-13 19:44:46 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2026-04-13 19:44:46 -0400 |
| commit | a62f436d2287e557e0d4b4bab0995cce44ecc3bd (patch) | |
| tree | 3ae24300fec29c228be475f336738cd6b0f9105f /src/d/d_particle.cpp | |
| parent | d29477ca93d605a84dd2b9895688c4252594085c (diff) | |
TVec3 inline fixes, d_a_obj_gtaki OK, JPAConvectionField::calc cleanup
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 1d10a839..19fa9b71 100644 --- a/src/d/d_particle.cpp +++ b/src/d/d_particle.cpp @@ -92,7 +92,7 @@ void dPa_J3DmodelEmitter_c::draw() { vel.normalize(); } JGeometry::TVec3<f32> tmp; - tmp.cross_hack(params->mAxis, vel); // fake inline + tmp.cross(params->mAxis, vel); if (tmp.isZero()) { tmp.set(0.0f, 0.0f, 1.0f); } else { |
