From b4edcdb7dd3978ce30356d0f53773eb5c97f3ba7 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 31 Aug 2006 06:51:23 +0000 Subject: [PATCH] NULL --- stepmania/src/Model.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/Model.cpp b/stepmania/src/Model.cpp index 67f7da7f19..3b6cb3f1bd 100644 --- a/stepmania/src/Model.cpp +++ b/stepmania/src/Model.cpp @@ -671,16 +671,16 @@ void Model::SetBones( const msAnimation* pAnimation, float fFrame, vectorfTime, pThisRotationKey->fTime, 0, 1 ); RageQuatSlerp( &vRot, pLastRotationKey->Rotation, pThisRotationKey->Rotation, s ); } - else if( pLastRotationKey == 0 ) + else if( pLastRotationKey == NULL ) { vRot = pThisRotationKey->Rotation; } - else if( pThisRotationKey == 0 ) + else if( pThisRotationKey == NULL ) { vRot = pLastRotationKey->Rotation; }