mirror of https://github.com/PCSX2/pcsx2.git
... simplified code for the last bugfix. :p
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3858 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
21a147563e
commit
8f95d0626f
|
@ -272,7 +272,7 @@ void AppCoreThread::ApplySettings( const Pcsx2Config& src )
|
|||
|
||||
const CommandlineOverrides& overrides( wxGetApp().Overrides );
|
||||
if( overrides.DisableSpeedhacks || !g_Conf->EnableSpeedHacks )
|
||||
fixup.Speedhacks = Pcsx2Config::SpeedhackOptions().DisableAll();
|
||||
fixup.Speedhacks.DisableAll();
|
||||
|
||||
if( overrides.ApplyCustomGamefixes )
|
||||
{
|
||||
|
@ -280,7 +280,7 @@ void AppCoreThread::ApplySettings( const Pcsx2Config& src )
|
|||
fixup.Gamefixes.Set( id, overrides.Gamefixes.Get(id) );
|
||||
}
|
||||
else if( !g_Conf->EnableGameFixes )
|
||||
fixup.Gamefixes = Pcsx2Config::GamefixOptions().DisableAll();
|
||||
fixup.Gamefixes.DisableAll();
|
||||
|
||||
wxString gameCRC;
|
||||
wxString gameSerial;
|
||||
|
|
Loading…
Reference in New Issue