Skip to content

Commit

Permalink
Core: Fix clang issue
Browse files Browse the repository at this point in the history
  • Loading branch information
project64 committed Sep 21, 2023
1 parent 6307888 commit aadcca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Project64-core/N64System/N64System.cpp
Expand Up @@ -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++)
Expand Down

0 comments on commit aadcca7

Please sign in to comment.