mirror of
https://github.com/LIV2/WinUAE.git
synced 2025-12-06 00:12:52 +00:00
Fixed check for Blizzard cpuboard memtype, fixed readonly for rom_f0_ppc
This commit is contained in:
parent
9f431c3668
commit
b30915dd1f
2
main.cpp
2
main.cpp
@ -310,7 +310,7 @@ void fixup_cpu (struct uae_prefs *p)
|
||||
error_log(_T("Cycle-exact mode requires at least Disabled but emulated sound setting."));
|
||||
}
|
||||
|
||||
if (p->cpuboard_type && cpuboard_jitdirectompatible(p) && !p->comptrustbyte) {
|
||||
if (p->cachesize && p->cpuboard_type && !cpuboard_jitdirectompatible(p) && !p->comptrustbyte) {
|
||||
error_log(_T("JIT direct is not compatible with emulated Blizzard accelerator boards."));
|
||||
p->comptrustbyte = 1;
|
||||
p->comptrustlong = 1;
|
||||
|
||||
@ -638,7 +638,7 @@ void *uae_shmat (addrbank *ab, int shmid, void *shmaddr, int shmflg)
|
||||
// this is flash and also contains IO
|
||||
shmaddr=natmem_offset + 0xf00000;
|
||||
got = true;
|
||||
readonly = true;
|
||||
readonly = false;
|
||||
} else if (!_tcscmp(shmids[shmid].name, _T("rtarea"))) {
|
||||
shmaddr = natmem_offset + rtarea_base;
|
||||
got = true;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user