difficulty meter always shows 10 digits
This commit is contained in:
@@ -12,8 +12,6 @@ make sure supports music in "Music" folder
|
||||
|
||||
supports music folder if aditional dirs
|
||||
|
||||
meters always show 10
|
||||
|
||||
"How to Play" explanation with the freeze arrows nearly takes up the entire screen.
|
||||
|
||||
KeepAlive doesn't fold during how to play
|
||||
|
||||
@@ -52,9 +52,9 @@ void FootMeter::SetFromNotes( Notes* pNotes )
|
||||
void FootMeter::SetNumFeet( int iNumFeet )
|
||||
{
|
||||
CString sNewText;
|
||||
for( int f=0; f<=8; f++ )
|
||||
for( int f=0; f<=9; f++ )
|
||||
sNewText += (f<iNumFeet) ? "1" : "0";
|
||||
for( f=9; f<=12; f++ )
|
||||
for( f=10; f<=12; f++ )
|
||||
if( f<iNumFeet )
|
||||
sNewText += "1";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user