From a3421c323dbe40de8d5ae1b6d0d498b6eaace5ef Mon Sep 17 00:00:00 2001 From: fgenesis Date: Mon, 3 Oct 2016 23:11:48 +0200 Subject: [PATCH] hopefully last fix --- BBGE/Vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BBGE/Vector.h b/BBGE/Vector.h index 55674ed..b086c6a 100644 --- a/BBGE/Vector.h +++ b/BBGE/Vector.h @@ -433,8 +433,8 @@ struct InterpolatedVectorData class InterpolatedVector : public Vector { public: - InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(NULL) {} - InterpolatedVector(const Vector &vec) : Vector(vec), data(NULL) {} + InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(0) {} + InterpolatedVector(const Vector &vec) : Vector(vec), data(0) {} ~InterpolatedVector() {delete data;} InterpolatedVector(const InterpolatedVector &vec)