mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +01:00
Merge pull request #1056 from phire/IsMMIOAddress
Fix IsMMIOAddress Check.
This commit is contained in:
commit
c6f3424ab1
@ -40,7 +40,7 @@ const u32 NUM_MMIOS = NUM_BLOCKS * BLOCK_SIZE;
|
||||
// interface.
|
||||
inline bool IsMMIOAddress(u32 address)
|
||||
{
|
||||
return ((address & 0xE0000000) == 0xC0000000) &&
|
||||
return ((address & 0xFE7F0000) == 0xCC000000) &&
|
||||
((address & 0x0000FFFF) != 0x00008000);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user