mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 19:05:42 -04: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.
|
// 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.
|
// 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
|
#endif
|
||||||
|
|
||||||
case CPUFastmemMode::LUT:
|
case CPUFastmemMode::LUT:
|
||||||
return (paddr < g_ram_size);
|
return (paddr < RAM_MIRROR_END);
|
||||||
|
|
||||||
case CPUFastmemMode::Disabled:
|
case CPUFastmemMode::Disabled:
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user