Move NotifySymbolMapUpdated to System_Notify

This commit is contained in:
Henrik Rydgård 2023-03-21 11:28:50 +01:00
parent dda8635c89
commit c92a4acb40
11 changed files with 14 additions and 19 deletions

View file

@ -47,6 +47,7 @@
#include "Core/Config.h"
#include "Core/ConfigValues.h"
#include "Core/HW/Camera.h"
#include "Core/Debugger/SymbolMap.h"
#include <signal.h>
#include <string.h>
@ -260,6 +261,10 @@ void System_Notify(SystemNotification notification) {
g_symbolMap->SortSymbols();
mainWindow->Notify(MainWindowMsg::BOOT_DONE);
break;
case SystemNotification::SYMBOL_MAP_UPDATED:
if (g_symbolMap)
g_symbolMap->SortSymbols();
break;
default:
break;
}