UCodes: Simplify ExramRead

This commit is contained in:
Lioncash 2015-10-15 22:48:22 -04:00
parent c420c52308
commit 03986c6fad
1 changed files with 2 additions and 5 deletions

View File

@ -17,12 +17,9 @@
class CMailHandler;
inline bool ExramRead(u32 address)
constexpr bool ExramRead(u32 address)
{
if (address & 0x10000000)
return true;
else
return false;
return (address & 0x10000000) != 0;
}
inline u8 HLEMemory_Read_U8(u32 address)