mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 05:40:01 -06:00
Core/MMU: Fix inverted condition in HostIsInstructionRAMAddress().
This commit is contained in:
@ -885,7 +885,7 @@ bool HostIsRAMAddress(u32 address, RequestedAddressSpace space)
|
||||
bool HostIsInstructionRAMAddress(u32 address, RequestedAddressSpace space)
|
||||
{
|
||||
// Instructions are always 32bit aligned.
|
||||
if (!(address & 3))
|
||||
if (address & 3)
|
||||
return false;
|
||||
|
||||
switch (space)
|
||||
|
Reference in New Issue
Block a user