mirror of https://github.com/PCSX2/pcsx2.git
Fixed a dumb bug on my part that caused some games (FFXII) to crash when loading savestates.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@351 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
f86f2cfb5e
commit
2f83a56dc3
|
@ -458,7 +458,6 @@ static __forceinline void _cpuBranchTest_Shared()
|
|||
_cpuTestPERF();
|
||||
_cpuTestTIMR();
|
||||
|
||||
|
||||
//#ifdef CPU_LOG
|
||||
// cpuTestMissingHwInts();
|
||||
//#endif
|
||||
|
@ -598,14 +597,13 @@ __forceinline void cpuTestDMACInts() {
|
|||
CPU_INT(31, 4);
|
||||
}
|
||||
|
||||
// fixme: Unused code. delete or find its true purpose?
|
||||
__forceinline void cpuTestTIMRInts() {
|
||||
if ((cpuRegs.CP0.n.Status.val & 0x10007) == 0x10001) {
|
||||
_cpuTestPERF();
|
||||
_cpuTestTIMR();
|
||||
}
|
||||
}
|
||||
|
||||
// fixme: unused code. delete or find its true purpose?
|
||||
void cpuTestHwInts() {
|
||||
cpuTestINTCInts();
|
||||
cpuTestDMACInts();
|
||||
|
|
Loading…
Reference in New Issue