diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-15 19:56:16 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-15 19:56:16 -0400 |
| commit | a88c87bf6388e36b8a1cfcf31df16752d4b70187 (patch) | |
| tree | 9521923db27ce1780169b5be1141e72026a84dd3 /include/JSystem | |
| parent | 19325b3c0b7c6f02306c9f79164cf168161bbd62 (diff) | |
fix some matches in JPADrawVisitor
Diffstat (limited to 'include/JSystem')
| -rw-r--r-- | include/JSystem/JGeometry.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/JSystem/JGeometry.h b/include/JSystem/JGeometry.h index dfba4f38..cbfd53a1 100644 --- a/include/JSystem/JGeometry.h +++ b/include/JSystem/JGeometry.h @@ -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; } |
