mirror of https://github.com/PCSX2/pcsx2.git
EE: Whoops! Fairly major oversight in the COP2 flag delay logging code causing false positives.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5758 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
3e4153597b
commit
54fa8719a3
|
@ -1399,7 +1399,7 @@ void recompileNextInstruction(int delayslot)
|
||||||
{
|
{
|
||||||
// I am so sorry.
|
// I am so sorry.
|
||||||
cpuRegs.code = memRead32(p);
|
cpuRegs.code = memRead32(p);
|
||||||
if (_Rs_ == 2) // CFC2
|
if (_Opcode_ == 022 && _Rs_ == 2) // CFC2
|
||||||
// rd is fs
|
// rd is fs
|
||||||
if (_Rd_ == 16 && s & 1 || _Rd_ == 17 && s & 2 || _Rd_ == 18 && s & 4)
|
if (_Rd_ == 16 && s & 1 || _Rd_ == 17 && s & 2 || _Rd_ == 18 && s & 4)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue