fix wrong difficulty icon frame

This commit is contained in:
Chris Danford
2003-05-05 04:15:46 +00:00
parent d6cbbdafe6
commit 5f647c8391
+1 -1
View File
@@ -44,7 +44,7 @@ void DifficultyIcon::SetFromNotes( PlayerNumber pn, Notes* pNotes )
switch( GetNumStates() ) switch( GetNumStates() )
{ {
case 5: SetState( iStateNo ); break; case 5: SetState( iStateNo ); break;
case 10: SetState( iStateNo ); break; case 10: SetState( iStateNo*2+pn ); break;
default: ASSERT(0); default: ASSERT(0);
} }
} }