mVU: Typo in CTC2 macro mode instruction for the status register case.

(Untested, unknown what if anything it fixes, possibly ace combat series but probably not.)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4937 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
sudonim1@gmail.com 2011-10-13 01:07:42 +00:00
parent be1662074a
commit ecdc649694
1 changed files with 2 additions and 2 deletions

View File

@ -313,9 +313,9 @@ static void recCTC2() {
xMOV(ptr32[&vu0Regs.VI[REG_R].UL], eax);
break;
case REG_STATUS_FLAG:
if (_Rt_) { // Denormalizes flag into gprF1
if (_Rt_) { // Denormalizes flag into gprF3
mVUallocSFLAGd(&cpuRegs.GPR.r[_Rt_].UL[0], 0);
xMOV(ptr32[&vu0Regs.VI[_Rd_].UL], gprF1);
xMOV(ptr32[&vu0Regs.VI[_Rd_].UL], gprF3);
}
else xMOV(ptr32[&vu0Regs.VI[_Rd_].UL], 0);
break;