From 779ed644d0d4b9a0173358e5dd4aa17663bc6c9f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 26 Apr 2003 04:06:14 +0000 Subject: [PATCH] 1. Introduce bug in unused code 2. Try to use said code a week later 3. ?????? 4. (reuse an old joke) --- stepmania/src/RageMath.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageMath.cpp b/stepmania/src/RageMath.cpp index a7968bc2b9..d4f268cf62 100644 --- a/stepmania/src/RageMath.cpp +++ b/stepmania/src/RageMath.cpp @@ -60,7 +60,7 @@ void RageVec3TransformCoord( RageVector3* pOut, const RageVector3* pV, const Rag void RageVec4TransformCoord( RageVector4* pOut, const RageVector4* pV, const RageMatrix* pM ) { const RageMatrix &a = *pM; - const RageVector4 &v = *pOut; + const RageVector4 &v = *pV; *pOut = RageVector4( a.m00*v.x+a.m10*v.y+a.m20*v.z+a.m30*v.w, a.m01*v.x+a.m11*v.y+a.m21*v.z+a.m31*v.w,