From 0f922283ff3ae7958815c1f57d3e31937096236a Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 6 Sep 2003 19:21:34 +0000 Subject: [PATCH] Unbroke option to not save songs --- stepmania/src/ScreenSongOptions.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stepmania/src/ScreenSongOptions.cpp b/stepmania/src/ScreenSongOptions.cpp index 15c38be7ce..210c1f3f32 100644 --- a/stepmania/src/ScreenSongOptions.cpp +++ b/stepmania/src/ScreenSongOptions.cpp @@ -30,6 +30,7 @@ enum { SO_ASSIST, SO_RATE, SO_AUTOSYNC, + SO_SAVE, NUM_SONG_OPTIONS_LINES }; @@ -41,6 +42,7 @@ OptionRow g_SongOptionsLines[NUM_SONG_OPTIONS_LINES] = { OptionRow( "Assist\nTick", true, "OFF", "ON" ), OptionRow( "Rate", true, "0.3x","0.4x","0.5x","0.6x","0.7x","0.8x","0.9x","1.0x","1.1x","1.2x","1.3x","1.4x","1.5x","1.6x","1.7x","1.8x","1.9x","2.0x" ), OptionRow( "Auto\nAdjust", true, "OFF", "ON" ), + OptionRow( "Save\nScores", true, "OFF", "ON" ), }; /* Get the next screen we'll go to when finished. */ @@ -82,6 +84,7 @@ void ScreenSongOptions::ImportOptions() m_iSelectedOption[0][SO_FAIL] = so.m_FailType; m_iSelectedOption[0][SO_ASSIST] = so.m_bAssistTick; m_iSelectedOption[0][SO_AUTOSYNC] = so.m_bAutoSync; + m_iSelectedOption[0][SO_SAVE] = so.m_bSaveScore; m_iSelectedOption[0][SO_RATE] = 7; // in case we don't match below for( unsigned i=0; i