From 2c72fe8009d0f6bc2cf9dda9b95d90ec63d6fb34 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 15 Sep 2003 03:21:36 +0000 Subject: [PATCH] apply transforms to playerNoteDataPostModifiers, not playerNoteData --- stepmania/src/ScoreKeeperMAX2.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ScoreKeeperMAX2.cpp b/stepmania/src/ScoreKeeperMAX2.cpp index c36d22dca6..b5354fc910 100644 --- a/stepmania/src/ScoreKeeperMAX2.cpp +++ b/stepmania/src/ScoreKeeperMAX2.cpp @@ -22,6 +22,7 @@ #include "SDL_utils.h" #include "SongManager.h" #include "NoteDataUtil.h" +#include "RageLog.h" ScoreKeeperMAX2::ScoreKeeperMAX2( const vector& apNotes_, const CStringArray &asModifiers, PlayerNumber pn_ ): @@ -55,7 +56,7 @@ ScoreKeeperMAX2::ScoreKeeperMAX2( const vector& apNotes_, const CStringA ModsForThisSong.FromString( asModifiers[i] ); NoteData playerNoteDataPostModifiers(playerNoteData); - NoteDataUtil::TransformNoteData( playerNoteData, ModsForThisSong, GAMESTATE->GetCurrentStyleDef()->m_StepsType ); + NoteDataUtil::TransformNoteData( playerNoteDataPostModifiers, ModsForThisSong, GAMESTATE->GetCurrentStyleDef()->m_StepsType ); iTotalPossibleDancePoints += this->GetPossibleDancePoints( playerNoteData, playerNoteDataPostModifiers ); }