gdbstub: Always ignore dynarec choice when compiled in

This commit is contained in:
RichardG867
2022-08-18 17:23:41 -03:00
parent 7702d05a10
commit 48b372c60a

View File

@@ -1378,7 +1378,7 @@ cpu_set(void)
}
if (is386) {
#ifdef USE_DYNAREC
#if defined(USE_DYNAREC) && !defined(USE_GDBSTUB)
if (cpu_use_dynarec)
cpu_exec = exec386_dynarec;
else