mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
Skip also CD32 fast CPU ROM patch if ROM is smaller than 512k
This commit is contained in:
parent
260854dfd8
commit
3da8c546a4
@ -2035,7 +2035,7 @@ static void patchrom(void)
|
||||
{
|
||||
if (currprefs.cs_cd32cd && (currprefs.cpu_model > 68020 || currprefs.cachesize || currprefs.m68k_speed != 0)) {
|
||||
uae_u8 *p = extendedkickmem_bank.baseaddr;
|
||||
if (p) {
|
||||
if (p && extendedkickmem_bank.allocated_size >= 524288) {
|
||||
for (int i = 0; i < 524288 - 512; i++) {
|
||||
if (!memcmp(p + i, patchdata2, sizeof(patchdata2)))
|
||||
return;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user