MMU: Don't generate virtual memory area on 32bit builds.
There is no JIT, so no need for fastmem. This memory won't be used at all.
This commit is contained in:
parent
0de1c6c99c
commit
f7e07f8f3b
|
@ -1206,7 +1206,10 @@ void DBATUpdated()
|
|||
UpdateFakeMMUBat(dbat_table, 0x40000000);
|
||||
UpdateFakeMMUBat(dbat_table, 0x70000000);
|
||||
}
|
||||
|
||||
#ifndef _ARCH_32
|
||||
Memory::UpdateLogicalMemory(dbat_table);
|
||||
#endif
|
||||
|
||||
// IsOptimizable*Address and dcbz depends on the BAT mapping, so we need a flush here.
|
||||
JitInterface::ClearSafe();
|
||||
|
|
Loading…
Reference in New Issue