Windows: Avoid segfault if memory except on boot.

This commit is contained in:
Unknown W. Brackets 2021-03-28 19:44:17 -07:00
parent 1d413c2470
commit f8306891c5
3 changed files with 7 additions and 4 deletions

View file

@ -122,7 +122,8 @@ void UpdateUIState(GlobalUIState newState) {
// Never leave the EXIT state.
if (globalUIState != newState && globalUIState != UISTATE_EXIT) {
globalUIState = newState;
host->UpdateDisassembly();
if (host)
host->UpdateDisassembly();
const char *state = nullptr;
switch (globalUIState) {
case UISTATE_EXIT: state = "exit"; break;