When CPU core is invalid, fall back to JIT instead of interpreter

This might happen if someone moves settings between e.g. a PC and
an Android device, or if someone was using JITIL and updates Dolphin.

I also made the panic alert a bit more explanatory.
This commit is contained in:
JosJuice
2018-05-26 14:19:53 +02:00
parent 92ec97f899
commit 792446e1da
2 changed files with 6 additions and 11 deletions

View File

@ -64,7 +64,9 @@ CPUCoreBase* InitJitCore(int core)
break;
default:
PanicAlert("Unrecognizable cpu_core: %d", core);
PanicAlertT("The selected CPU emulation core (%d) is not available. "
"Please select a different CPU emulation core in the settings.",
core);
g_jit = nullptr;
return nullptr;
}