mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-16 19:05:39 +00:00
Bus: Allow LUT fastmem on mirrors
This commit is contained in:
parent
9d40164f84
commit
c179473c2b
|
@ -585,12 +585,12 @@ bool Bus::CanUseFastmemForAddress(VirtualMemoryAddress address)
|
|||
{
|
||||
// Currently since we don't map the mirrors, don't use fastmem for them.
|
||||
// This is because the swapping of page code bits for SMC is too expensive.
|
||||
return (paddr < RAM_MIRROR_END);
|
||||
return (paddr < g_ram_size);
|
||||
}
|
||||
#endif
|
||||
|
||||
case CPUFastmemMode::LUT:
|
||||
return (paddr < g_ram_size);
|
||||
return (paddr < RAM_MIRROR_END);
|
||||
|
||||
case CPUFastmemMode::Disabled:
|
||||
default:
|
||||
|
|
Loading…
Reference in a new issue