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; }