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
This commit is contained in:
nakeee 2009-04-10 13:22:25 +00:00
parent e84ec7855a
commit c1fe6def46
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ void Config::Load()
iniFile.Get("Hacks", "EFBCopyDisableHotKey", &bEFBCopyDisableHotKey, 0); iniFile.Get("Hacks", "EFBCopyDisableHotKey", &bEFBCopyDisableHotKey, 0);
iniFile.Get("Hacks", "ProjectionHax1", &bProjectionHax1, 0); iniFile.Get("Hacks", "ProjectionHax1", &bProjectionHax1, 0);
iniFile.Get("Hacks", "EFBToTextureEnable", &bCopyEFBToRAM, 0); iniFile.Get("Hacks", "EFBToTextureEnable", &bCopyEFBToRAM, 0);
iniFile.Get("Hacks", "SMGhack", &bSMGhack, true); iniFile.Get("Hacks", "SMGhack", &bSMGhack, false);
} }
void Config::GameIniLoad() { void Config::GameIniLoad() {

View File

@ -359,7 +359,7 @@ void ConfigDialog::CreateGUIControls()
// Disabled or enabled // Disabled or enabled
m_SafeTextureCache->Enable(true); m_SafeTextureCache->Enable(true);
m_ProjectionHax1->Enable(true); m_ProjectionHax1->Enable(true);
m_SMGh->Enable(false); m_SMGh->Enable(true);
// Default values // Default values
m_SafeTextureCache->SetValue(g_Config.bSafeTextureCache); m_SafeTextureCache->SetValue(g_Config.bSafeTextureCache);