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

This commit is contained in:
Kevin Slaughter
2003-02-18 17:55:59 +00:00
parent 37ad6c96f4
commit 9dcde98d73
+1
View File
@@ -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()