no message
This commit is contained in:
@@ -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)
|
||||
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user