fix some matches in JPADrawVisitor

This commit is contained in:
LagoLunatic
2024-04-15 19:56:16 -04:00
parent 19325b3c0b
commit a88c87bf63
2 changed files with 23 additions and 30 deletions
+1
View File
@@ -77,6 +77,7 @@ struct TVec3<f32> : public Vec {
TVec3() {}
TVec3(f32 x, f32 y, f32 z) { set(x, y, z); }
TVec3(const Vec& b) { set(b); }
TVec3(const TVec3<f32>& b) { set(b); }
operator Vec*() { return (Vec*)&x; }
operator const Vec*() const { return (Vec*)&x; }