From 5f647c839137522fd38e06df09a4db72819b279c Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 5 May 2003 04:15:46 +0000 Subject: [PATCH] fix wrong difficulty icon frame --- stepmania/src/DifficultyIcon.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/DifficultyIcon.cpp b/stepmania/src/DifficultyIcon.cpp index d7167e3e7c..a0382f83d3 100644 --- a/stepmania/src/DifficultyIcon.cpp +++ b/stepmania/src/DifficultyIcon.cpp @@ -44,7 +44,7 @@ void DifficultyIcon::SetFromNotes( PlayerNumber pn, Notes* pNotes ) switch( GetNumStates() ) { case 5: SetState( iStateNo ); break; - case 10: SetState( iStateNo ); break; + case 10: SetState( iStateNo*2+pn ); break; default: ASSERT(0); } }