mirror of https://github.com/PCSX2/pcsx2.git
Allow reading of 8bit timers (and other hardware pages) (#3361)
Fixes Robin Hood
This commit is contained in:
parent
16431653e4
commit
ce1955ff60
|
@ -235,7 +235,7 @@ mem8_t __fastcall _hwRead8(u32 mem)
|
|||
template< uint page >
|
||||
mem8_t __fastcall hwRead8(u32 mem)
|
||||
{
|
||||
mem8_t ret8 = _hwRead8<0x0f>(mem);
|
||||
mem8_t ret8 = _hwRead8<page>(mem);
|
||||
eeHwTraceLog( mem, ret8, true );
|
||||
return ret8;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue