summaryrefslogtreecommitdiff
path: root/include/egg
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-04-27 11:14:54 +0200
committerrobojumper <robojumper@gmail.com>2025-04-27 11:14:54 +0200
commita962cdd14ac4520d72151c1b83b3e98d608e06be (patch)
tree3af28a1b00a8fddde18bc312e89b578d2e421349 /include/egg
parent70125c1eacee19e03b8fd9b4dcf277c019ab4f3f (diff)
JPAEmitterManager OK
Diffstat (limited to 'include/egg')
-rw-r--r--include/egg/math/eggVector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/egg/math/eggVector.h b/include/egg/math/eggVector.h
index 1c8a220e..f1256a6a 100644
--- a/include/egg/math/eggVector.h
+++ b/include/egg/math/eggVector.h
@@ -48,7 +48,7 @@ struct Vector3f : public nw4r::math::VEC3 {
return Vector3f(-x, -y, -z);
}
- Vector3f operator-(const Vector3f &v) {
+ Vector3f operator-(const Vector3f &v) const {
return Vector3f(x - v.x, y - v.y, z - v.z);
}