reenable OM_SOUND

This commit is contained in:
Glenn Maynard
2003-09-25 02:46:51 +00:00
parent cfa01ffce3
commit 240eaba8ff
+3 -3
View File
@@ -36,7 +36,7 @@ enum {
OM_GAMEPLAY,
OM_GRAPHIC,
OM_MACHINE,
// OM_SOUND,
OM_SOUND,
OM_PROFILE,
OM_RELOAD,
NUM_OPTIONS_MENU_LINES
@@ -51,8 +51,8 @@ OptionRow g_OptionsMenuLines[NUM_OPTIONS_MENU_LINES] = {
OptionRow( "", true, "Gameplay Options" ),
OptionRow( "", true, "Graphic Options" ),
OptionRow( "", true, "Machine Options" ),
OptionRow( "", true, "Sound Options" ),
OptionRow( "", true, "Profile Options" ),
// OptionRow( "", true, "Sound Options" ),
OptionRow( "", true, "Reload Songs/Courses" ),
};
@@ -109,7 +109,7 @@ void ScreenOptionsMenu::GoToNextState()
case OM_INPUT: SCREENMAN->SetNewScreen("ScreenInputOptions"); break;
case OM_MACHINE: SCREENMAN->SetNewScreen("ScreenMachineOptions"); break;
case OM_PROFILE: SCREENMAN->SetNewScreen("ScreenProfileOptions"); break;
// case OM_SOUND: SCREENMAN->SetNewScreen("ScreenSoundOptions"); break;
case OM_SOUND: SCREENMAN->SetNewScreen("ScreenSoundOptions"); break;
case OM_RELOAD:
SONGMAN->Reload();
UNLOCKSYS->UpdateSongs();