mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-06 16:18:58 +00:00
Merge pull request #9879 from AdmiralCurtiss/host-is-instruction-ram-address-fix
Core/MMU: Fix inverted condition in HostIsInstructionRAMAddress().
This commit is contained in:
commit
838434a9df
1 changed files with 1 additions and 1 deletions
|
@ -885,7 +885,7 @@ bool HostIsRAMAddress(u32 address, RequestedAddressSpace space)
|
||||||
bool HostIsInstructionRAMAddress(u32 address, RequestedAddressSpace space)
|
bool HostIsInstructionRAMAddress(u32 address, RequestedAddressSpace space)
|
||||||
{
|
{
|
||||||
// Instructions are always 32bit aligned.
|
// Instructions are always 32bit aligned.
|
||||||
if (!(address & 3))
|
if (address & 3)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
switch (space)
|
switch (space)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue