mirror of https://github.com/PCSX2/pcsx2.git
Exclude the EE timing hack from presets as it breaks text in the BIOS (interesting!) and is reported to cause a few slowdowns even.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4353 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
ba4bc4529d
commit
6af6a424ba
|
@ -861,8 +861,9 @@ bool AppConfig::IsOkApplyPreset(int n)
|
||||||
//best balanced hacks combo?
|
//best balanced hacks combo?
|
||||||
case 2 : //enable mvu flag hack, enable EE timing hack, set EE cyclerate to 1 click.
|
case 2 : //enable mvu flag hack, enable EE timing hack, set EE cyclerate to 1 click.
|
||||||
eeUsed?0:(eeUsed=true, EmuOptions.Speedhacks.EECycleRate = 1);
|
eeUsed?0:(eeUsed=true, EmuOptions.Speedhacks.EECycleRate = 1);
|
||||||
EnableGameFixes = true;
|
// EE timing hack appears to break the BIOS text and cause slowdowns in a few titles.
|
||||||
EmuOptions.Gamefixes.EETimingHack = true;
|
//EnableGameFixes = true;
|
||||||
|
//EmuOptions.Gamefixes.EETimingHack = true;
|
||||||
EmuOptions.Speedhacks.vuFlagHack = true;
|
EmuOptions.Speedhacks.vuFlagHack = true;
|
||||||
|
|
||||||
case 1 : //Recommended speed hacks without mvu flag hack.
|
case 1 : //Recommended speed hacks without mvu flag hack.
|
||||||
|
|
Loading…
Reference in New Issue