mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Fix IsMMIOAddress Check.
This commit is contained in:
parent
cd4d82f065
commit
784d3937dd
@ -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