mirror of
https://github.com/stenzek/duckstation.git
synced 2024-11-27 08:00:36 +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 New Issue
Block a user