Core: Fix clang issue

This commit is contained in:
zilmar 2023-09-14 16:33:20 +09:30
parent c02858c7a0
commit e0c125e837
1 changed files with 1 additions and 1 deletions

View File

@ -1232,7 +1232,7 @@ void R4300iOp::LLD()
{ {
uint64_t Address = _GPR[m_Opcode.base].DW + (int16_t)m_Opcode.offset; uint64_t Address = _GPR[m_Opcode.base].DW + (int16_t)m_Opcode.offset;
if (g_MMU->LD_Memory(Address, _GPR[m_Opcode.rt].UDW)) if (g_MMU->LD_Memory(Address, _GPR[m_Opcode.rt].UDW))
{ {
(*_LLBit) = 1; (*_LLBit) = 1;
} }
} }