From 396400c18cc3ea0b636dd3d1c25a9b8c8e32b94d Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Tue, 8 Feb 2011 17:13:16 -0500 Subject: [PATCH] fix strange unfinished coding bug --- util/Vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/Vector.h b/util/Vector.h index 5fc9450..901fc75 100644 --- a/util/Vector.h +++ b/util/Vector.h @@ -163,8 +163,8 @@ class Vector { return Vector( m_array[0] / scale, - m_array[0] / scale, - m_array[0] / scale); + m_array[1] / scale, + m_array[2] / scale); } Vector & operator+=(const Vector & v2)