Allow reading of 8bit timers (and other hardware pages) (#3361)

Fixes Robin Hood
This commit is contained in:
refractionpcsx2 2020-05-07 20:30:35 +01:00 committed by GitHub
parent 16431653e4
commit ce1955ff60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}