aboutsummaryrefslogtreecommitdiffstats
path: root/src/math/VuVector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/VuVector.h')
-rw-r--r--src/math/VuVector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/math/VuVector.h b/src/math/VuVector.h
index 41584095..ccaa4cfb 100644
--- a/src/math/VuVector.h
+++ b/src/math/VuVector.h
@@ -3,10 +3,10 @@
class TYPEALIGN(16) CVuVector : public CVector
{
public:
- float w;
+// float w; // in CVector now
CVuVector(void) {}
CVuVector(float x, float y, float z) : CVector(x, y, z) {}
- CVuVector(float x, float y, float z, float w) : CVector(x, y, z), w(w) {}
+ CVuVector(float x, float y, float z, float w) : CVector(x, y, z)/*, w(w)*/ { this->w = w;}
CVuVector(const CVector &v) : CVector(v.x, v.y, v.z) {}
CVuVector(const RwV3d &v) : CVector(v) {}
/*