sh4/rdv_CompilePC: Fix boot time automatic cache flushes

The bios boots from 0xA... addresses, not 0x8... so the flushes were never triggered
This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis 2015-02-25 19:30:08 +01:00
parent 7c64d57b35
commit ae8ce5ad23
1 changed files with 1 additions and 1 deletions

View File

@ -212,7 +212,7 @@ DynarecCodeEntry* rdv_CompilePC()
{
u32 pc=next_pc;
if (emit_FreeSpace()<16*1024 || pc==0x8c0000e0 || pc==0x8c010000 || pc==0x8c008300)
if (emit_FreeSpace()<16*1024 || pc==0x8c0000e0 || pc==0xac010000 || pc==0xac008300)
recSh4_ClearCache();
RuntimeBlockInfo* rv=0;