From 161266b1d987bedf5442275b8e83fea16d27e645 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Wed, 9 Aug 2023 16:14:10 -0400 Subject: [PATCH] Update mxvector.h --- LEGO1/mxvector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LEGO1/mxvector.h b/LEGO1/mxvector.h index 994e0743..ab30d2f5 100644 --- a/LEGO1/mxvector.h +++ b/LEGO1/mxvector.h @@ -136,7 +136,7 @@ class MxVector3Data : public MxVector3 public: inline MxVector3Data() : MxVector3(storage) {} inline MxVector3Data(float p_x, float p_y, float p_z) - : MxVector3(&x) + : MxVector3(storage) , x(p_x), y(p_y), z(p_z) {}