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

@ -84,7 +84,7 @@ int main(int argc, char* argv[])
// set log flags
// g_pLog->SetConsoleOutputParams(true, nullptr, LOGLEVEL_DEBUG);
// g_pLog->SetConsoleOutputParams(true, "GPU GPU_HW_OpenGL SPU Pad DigitalController", LOGLEVEL_DEBUG);
g_pLog->SetConsoleOutputParams(true, "CDROM DMA SPU Pad DigitalController", LOGLEVEL_DEBUG);
g_pLog->SetConsoleOutputParams(true, "GPU GPU_HW_OpenGL CDROM DMA SPU Pad DigitalController", LOGLEVEL_DEBUG);
#ifdef Y_BUILD_CONFIG_RELEASE
g_pLog->SetFilterLevel(LOGLEVEL_INFO);

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;
}