mirror of
https://github.com/stenzek/duckstation.git
synced 2026-02-12 01:14:33 +00:00
CPU/Interpreter: Use aligned address for membps in lwl/lwr
This commit is contained in:
@@ -1498,8 +1498,8 @@ restart_instruction:
|
||||
const VirtualMemoryAddress aligned_addr = addr & ~UINT32_C(3);
|
||||
if constexpr (debug)
|
||||
{
|
||||
Cop0DataBreakpointCheck<MemoryAccessType::Read>(addr);
|
||||
MemoryBreakpointCheck<MemoryAccessType::Read>(addr);
|
||||
Cop0DataBreakpointCheck<MemoryAccessType::Read>(aligned_addr);
|
||||
MemoryBreakpointCheck<MemoryAccessType::Read>(aligned_addr);
|
||||
}
|
||||
|
||||
u32 aligned_value;
|
||||
|
||||
Reference in New Issue
Block a user