mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01:00
Fixed typo in the MEM2 handling.
This commit is contained in:
parent
033a349444
commit
f9d9257c57
@ -154,7 +154,7 @@ inline void ReadFromHardware(T &_var, const u32 em_address, const u32 effective_
|
||||
if (m_pEXRAM && (tlb_addr & 0xF0000000) == 0x10000000)
|
||||
{
|
||||
_var <<= 8;
|
||||
_var = m_pEXRAM[tlb_addr & EXRAM_MASK];
|
||||
_var |= m_pEXRAM[tlb_addr & EXRAM_MASK];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user