From 9dcde98d7397c353779a960d91b9a01e3e068692 Mon Sep 17 00:00:00 2001 From: Kevin Slaughter Date: Tue, 18 Feb 2003 17:55:59 +0000 Subject: [PATCH] Fixed bug of MACHINE_OPTIONS>>SHOW_SONG_OPTIONS not importing it's current value when the screen is loaded, as it did not show the current value correctly --- stepmania/src/ScreenMachineOptions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stepmania/src/ScreenMachineOptions.cpp b/stepmania/src/ScreenMachineOptions.cpp index 354789828c..b3bffc289f 100644 --- a/stepmania/src/ScreenMachineOptions.cpp +++ b/stepmania/src/ScreenMachineOptions.cpp @@ -116,6 +116,7 @@ void ScreenMachineOptions::ImportOptions() m_iSelectedOption[0][MO_COIN_MODE] = PREFSMAN->m_CoinMode; m_iSelectedOption[0][MO_COINS_PER_CREDIT] = PREFSMAN->m_iCoinsPerCredit - 1; m_iSelectedOption[0][MO_JOINT_PREMIUM] = PREFSMAN->m_bJointPremium ? 1:0; + m_iSelectedOption[0][MO_SHOW_SONG_OPTIONS] = PREFSMAN->m_bShowSongOptions ? 1:0; } void ScreenMachineOptions::ExportOptions()