Core: Fix clang issue

This commit is contained in:
zilmar 2023-09-21 18:40:27 +09:30
parent 6307888be4
commit aadcca7528
1 changed files with 1 additions and 1 deletions

View File

@ -1540,7 +1540,7 @@ void CN64System::DumpSyncErrors(CN64System * SecondCPU)
for (count = 0; count < 32; count++)
{
Error.LogF("CP0[%s] %*s0x%08X%08X, 0x%08X%08X\r\n", CRegName::Cop0[count], 12 - strlen(CRegName::Cop0[count]), "",
(uint32_t)(m_Reg.m_CP0[count] >> 32), (uint32_t)m_Reg.m_CP0[count], (uint32_t)(SecondCPU->m_Reg.m_CP0[count] >> 32), (uint32_t)(SecondCPU->m_Reg.m_CP0[count]));
(uint32_t)(m_Reg.m_CP0[count] >> 32), (uint32_t)m_Reg.m_CP0[count], (uint32_t)(SecondCPU->m_Reg.m_CP0[count] >> 32), (uint32_t)(SecondCPU->m_Reg.m_CP0[count]));
}
Error.Log("\r\n");
for (count = 0; count < 32; count++)