mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-24 03:11:09 +00:00
UCodes: Simplify ExramRead
This commit is contained in:
parent
c420c52308
commit
03986c6fad
1 changed files with 2 additions and 5 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue