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()
|
void MusicWheel::NextMusic()
|
||||||
{
|
{
|
||||||
if( m_WheelState != STATE_IDLE )
|
switch( m_WheelState )
|
||||||
return;
|
{
|
||||||
|
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();
|
MUSIC->Stop();
|
||||||
|
|
||||||
@@ -524,8 +531,15 @@ void MusicWheel::NextMusic()
|
|||||||
|
|
||||||
void MusicWheel::NextSort()
|
void MusicWheel::NextSort()
|
||||||
{
|
{
|
||||||
if( m_WheelState != STATE_IDLE )
|
switch( m_WheelState )
|
||||||
return;
|
{
|
||||||
|
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();
|
MUSIC->Stop();
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user