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:
parent
7c64d57b35
commit
ae8ce5ad23
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue