mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 16:19:28 +01:00
Core/MMU: Fix inverted condition in HostIsInstructionRAMAddress().
This commit is contained in:
parent
cfcc994f6c
commit
c9e4489e17
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user