mirror of https://github.com/PCSX2/pcsx2.git
Added insane EE cycle rate multipliers because they get requested so much.
Requires editing the pcsx2_vm.ini directly. Set EECycleRate = whatever (between 3 and 99). git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5908 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
182d51eb34
commit
8a92ad1434
|
@ -1126,7 +1126,18 @@ static u32 scaleBlockCycles_helper()
|
|||
scalarHigh = 7;
|
||||
break;
|
||||
|
||||
jNO_DEFAULT
|
||||
// Added insane rates on popular request (rama)
|
||||
//jNO_DEFAULT
|
||||
default:
|
||||
scalarLow = 2;
|
||||
scalarMid = 3;
|
||||
scalarHigh = 2;
|
||||
|
||||
if (EmuConfig.Speedhacks.EECycleRate > 2 && EmuConfig.Speedhacks.EECycleRate < 100) {
|
||||
scalarLow *= EmuConfig.Speedhacks.EECycleRate;
|
||||
scalarMid *= EmuConfig.Speedhacks.EECycleRate;
|
||||
scalarHigh *= EmuConfig.Speedhacks.EECycleRate;
|
||||
}
|
||||
}
|
||||
|
||||
const u32 temp = s_nBlockCycles * (
|
||||
|
|
Loading…
Reference in New Issue