no message

This commit is contained in:
Chris Danford
2002-01-18 22:18:41 +00:00
parent c8f16c75c1
commit d2d2e6ac08
2 changed files with 25 additions and 4 deletions
+7
View File
@@ -0,0 +1,7 @@
1. Create a new group by creating a new folder (optional)
2. In the group folder, create a folder for your song
3. Copy all the files for your song into the song folder
- background (optional)
- banner (optional)
- music (required)
- BMS files or DWI file (required)
+18 -4
View File
@@ -508,8 +508,15 @@ void MusicWheel::PrevMusic()
void MusicWheel::NextMusic()
{
if( m_WheelState != STATE_IDLE )
return;
switch( m_WheelState )
{
case STATE_IDLE:
case STATE_SWITCHING_TO_NEXT_MUSIC:
case STATE_SWITCHING_TO_PREV_MUSIC:
break; // fall through
default:
return; // don't continue
}
MUSIC->Stop();
@@ -524,8 +531,15 @@ void MusicWheel::NextMusic()
void MusicWheel::NextSort()
{
if( m_WheelState != STATE_IDLE )
return;
switch( m_WheelState )
{
case STATE_IDLE:
case STATE_SWITCHING_TO_NEXT_MUSIC:
case STATE_SWITCHING_TO_PREV_MUSIC:
break; // fall through
default:
return; // don't continue
}
MUSIC->Stop();