UCodes: Simplify ExramRead
This commit is contained in:
parent
c420c52308
commit
03986c6fad
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue