mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-31 00:32:53 +00:00
UCodes: Simplify ExramRead
This commit is contained in:
parent
c420c52308
commit
03986c6fad
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user