mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
UCodes: Simplify ExramRead
This commit is contained in:
@ -17,12 +17,9 @@
|
|||||||
|
|
||||||
class CMailHandler;
|
class CMailHandler;
|
||||||
|
|
||||||
inline bool ExramRead(u32 address)
|
constexpr bool ExramRead(u32 address)
|
||||||
{
|
{
|
||||||
if (address & 0x10000000)
|
return (address & 0x10000000) != 0;
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inline u8 HLEMemory_Read_U8(u32 address)
|
inline u8 HLEMemory_Read_U8(u32 address)
|
||||||
|
Reference in New Issue
Block a user