From c1fe6def46b8294e31d26fac02963af179e32108 Mon Sep 17 00:00:00 2001 From: nakeee Date: Fri, 10 Apr 2009 13:22:25 +0000 Subject: [PATCH] Fixed smg patch being on by default (it was disabled instead of off by mistake) git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2950 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Plugins/Plugin_VideoOGL/Src/Config.cpp | 2 +- Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp index 8aaca9edab..9843215724 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/Config.cpp @@ -80,7 +80,7 @@ void Config::Load() iniFile.Get("Hacks", "EFBCopyDisableHotKey", &bEFBCopyDisableHotKey, 0); iniFile.Get("Hacks", "ProjectionHax1", &bProjectionHax1, 0); iniFile.Get("Hacks", "EFBToTextureEnable", &bCopyEFBToRAM, 0); - iniFile.Get("Hacks", "SMGhack", &bSMGhack, true); + iniFile.Get("Hacks", "SMGhack", &bSMGhack, false); } void Config::GameIniLoad() { diff --git a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp index c3052b56eb..66a055fa40 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_VideoOGL/Src/GUI/ConfigDlg.cpp @@ -359,7 +359,7 @@ void ConfigDialog::CreateGUIControls() // Disabled or enabled m_SafeTextureCache->Enable(true); m_ProjectionHax1->Enable(true); - m_SMGh->Enable(false); + m_SMGh->Enable(true); // Default values m_SafeTextureCache->SetValue(g_Config.bSafeTextureCache);