Windows: Avoid segfault if memory except on boot.
This commit is contained in:
parent
1d413c2470
commit
f8306891c5
3 changed files with 7 additions and 4 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue