disable difficulty change for oni courses

This commit is contained in:
Andrew Wong
2003-07-30 12:52:31 +00:00
parent b5a11458f3
commit 2a793de751
+6 -3
View File
@@ -263,9 +263,12 @@ void ScreenSelectCourse::Input( const DeviceInput& DeviceI, InputEventType type,
if( CodeDetector::EnteredHarderDifficulty(GameI.controller) &&
!GAMESTATE->m_bDifficultCourses)
{
m_soundChangeNotes.Play();
GAMESTATE->m_bDifficultCourses = true;
SCREENMAN->PostMessageToTopScreen(SM_SongChanged,0);
if (GAMESTATE->m_PlayMode != PLAY_MODE_ONI) // disable difficult courses on oni mode
{
m_soundChangeNotes.Play();
GAMESTATE->m_bDifficultCourses = true;
SCREENMAN->PostMessageToTopScreen(SM_SongChanged,0);
}
}