mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
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;
|
||||
|
|
|
@ -131,9 +131,8 @@ void CMemoryDlg::searchBoxRedraw(std::vector<u32> results) {
|
|||
}
|
||||
|
||||
|
||||
void CMemoryDlg::NotifyMapLoaded()
|
||||
{
|
||||
if (m_hDlg)
|
||||
void CMemoryDlg::NotifyMapLoaded() {
|
||||
if (m_hDlg && g_symbolMap)
|
||||
g_symbolMap->FillSymbolListBox(symListHdl, ST_DATA);
|
||||
Update();
|
||||
}
|
||||
|
|
|
@ -263,6 +263,9 @@ void MainThreadFunc() {
|
|||
if (!Core_IsActive())
|
||||
UpdateUIState(UISTATE_MENU);
|
||||
Core_Run(g_graphicsContext);
|
||||
if (coreState == CORE_BOOT_ERROR) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
Core_Stop();
|
||||
|
|
Loading…
Add table
Reference in a new issue