mirror of https://github.com/PCSX2/pcsx2.git
Config: Improvement for r5196: MTVU now completely unaffected by presets (including the first).
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5197 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
787529f0cf
commit
e372fd7fd1
|
@ -910,6 +910,7 @@ bool AppConfig::IsOkApplyPreset(int n)
|
|||
EmuOptions.Speedhacks = default_Pcsx2Config.Speedhacks;
|
||||
EmuOptions.Speedhacks.bitset = 0; //Turn off individual hacks to make it visually clear they're not used.
|
||||
EmuOptions.Speedhacks.vuThread = original_SpeedHacks.vuThread; // MTVU is not modified by presets
|
||||
EnableSpeedHacks = true;
|
||||
|
||||
//Actual application of current preset over the base settings which all presets use (mostly pcsx2's default values).
|
||||
//The presets themselves might need some voodoo tuning to be even more useful. Currently they mostly modify Speedhacks.
|
||||
|
@ -937,7 +938,6 @@ bool AppConfig::IsOkApplyPreset(int n)
|
|||
//EmuOptions.Gamefixes.EETimingHack = true;
|
||||
|
||||
case 1 : //Recommended speed hacks.
|
||||
EnableSpeedHacks = true;
|
||||
EmuOptions.Speedhacks.IntcStat = true;
|
||||
EmuOptions.Speedhacks.WaitLoop = true;
|
||||
EmuOptions.Speedhacks.vuFlagHack = true;
|
||||
|
|
Loading…
Reference in New Issue