mirror of https://github.com/PCSX2/pcsx2.git
fix for last revision.
git-svn-id: http://pcsx2-playground.googlecode.com/svn/trunk@159 a6443dda-0b58-4228-96e9-037be469359c
This commit is contained in:
parent
55879992d8
commit
ae714c14b3
|
@ -1043,7 +1043,9 @@ void hwWrite32(u32 mem, u32 value) {
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
case 0x1000f130:
|
case 0x1000f130:
|
||||||
case 0x1000f410:
|
case 0x1000f410:
|
||||||
|
#ifdef PCSX2_DEVBUILD
|
||||||
HW_LOG("Unknown Hardware write 32 at %x with value %x (%x)\n", mem, value, cpuRegs.CP0.n.Status);
|
HW_LOG("Unknown Hardware write 32 at %x with value %x (%x)\n", mem, value, cpuRegs.CP0.n.Status);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
default:
|
default:
|
||||||
|
@ -1053,7 +1055,9 @@ void hwWrite32(u32 mem, u32 value) {
|
||||||
{
|
{
|
||||||
psHu32(mem) = value;
|
psHu32(mem) = value;
|
||||||
}
|
}
|
||||||
|
#ifdef PCSX2_DEVBUILD
|
||||||
HW_LOG("Unknown Hardware write 32 at %x with value %x (%x)\n", mem, value, cpuRegs.CP0.n.Status);
|
HW_LOG("Unknown Hardware write 32 at %x with value %x (%x)\n", mem, value, cpuRegs.CP0.n.Status);
|
||||||
|
#endif
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue