CPU/Recompiler: Actually use fetch ticks for uncached EXP1

This commit is contained in:
Stenzek 2024-12-31 16:12:50 +10:00
parent 34f2600f99
commit aca7a4b5c2
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -794,6 +794,8 @@ const TickCount* Bus::GetMemoryAccessTimePtr(PhysicalMemoryAddress address, Memo
// Currently only BIOS, but could be EXP1 as well.
if (address >= BIOS_BASE && address < (BIOS_BASE + BIOS_MIRROR_SIZE))
return &g_bios_access_time[static_cast<size_t>(size)];
else if (address >= EXP1_BASE && address < (BIOS_BASE + EXP1_SIZE))
return &g_exp1_access_time[static_cast<size_t>(size)];
return nullptr;
}