From 8c869c0e90c2831ae01b7c0c463bf1c18feaa00b Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 24 Jan 2006 07:30:01 +0000 Subject: [PATCH] fix logging toggle --- stepmania/src/smpackage/ChangeGameSettings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/smpackage/ChangeGameSettings.cpp b/stepmania/src/smpackage/ChangeGameSettings.cpp index 6488c0b55b..ce4fac7842 100644 --- a/stepmania/src/smpackage/ChangeGameSettings.cpp +++ b/stepmania/src/smpackage/ChangeGameSettings.cpp @@ -100,7 +100,7 @@ BOOL ChangeGameSettings::OnInitDialog() bValue = false; - ini.GetValue( "Options", "ShowLogWindow", bValue ); + ini.GetValue( "Options", "ShowLogOutput", bValue ); CheckDlgButton( IDC_CHECK_SHOW_LOG_WINDOW, bValue ? BST_CHECKED : BST_UNCHECKED ); @@ -137,7 +137,7 @@ void ChangeGameSettings::OnOK() ini.SetValue( "Options", "LogToDisk", BST_CHECKED == IsDlgButtonChecked(IDC_CHECK_LOG_TO_DISK) ); - ini.SetValue( "Options", "ShowLogWindow", BST_CHECKED == IsDlgButtonChecked(IDC_CHECK_SHOW_LOG_WINDOW) ); + ini.SetValue( "Options", "ShowLogOutput", BST_CHECKED == IsDlgButtonChecked(IDC_CHECK_SHOW_LOG_WINDOW) ); if( !ini.WriteFile(SpecialFiles::PREFERENCES_INI_PATH) )