Draw a minimal crash dump on the emu screen after a crash (if bIgnoreBadMemAccess is false).

Add setting for ignore bad memory accesses
This commit is contained in:
Henrik Rydgard 2019-02-12 13:29:37 +01:00 committed by Henrik Rydgård
parent c988d42b04
commit cbc90955ba

View file

@ -1539,8 +1539,10 @@ bool EmuScreen::hasVisibleUI() {
return true;
// Exception information.
if (coreState == CORE_RUNTIME_ERROR || coreState == CORE_STEPPING)
if (coreState == CORE_RUNTIME_ERROR || coreState == CORE_STEPPING) {
return true;
}
return false;
}