GTE: Fix incorrect source in MVMVA

This commit is contained in:
Connor McLaughlin
2019-09-26 13:43:41 +10:00
parent 4d1837acb1
commit 27cf3c99ac
2 changed files with 4 additions and 4 deletions

View File

@ -703,9 +703,9 @@ void Core::Execute_MVMVA(Instruction inst)
Vz = m_regs.V2[2];
break;
default:
Vx = m_regs.IR0;
Vy = m_regs.IR1;
Vz = m_regs.IR2;
Vx = m_regs.IR1;
Vy = m_regs.IR2;
Vz = m_regs.IR3;
break;
}