Skip to content

Commit bf42d91

Browse files
committed
Fix debugger UI load
1 parent 2a3d9fd commit bf42d91

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ui/ui.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1832,9 +1832,11 @@ extern "C"
18321832

18331833
// In Demo, plugins are explicitly loaded. So there is no need to specify dependencies
18341834
#ifndef DEMO_EDITION
1835-
BINARYNINJAPLUGIN void CorePluginDependencies()
1835+
BINARYNINJAPLUGIN void UIPluginDependencies()
18361836
{
18371837
SetCurrentPluginLoadOrder(LatePluginLoadOrder);
1838+
// Make sure we load after the debugger core first
1839+
AddRequiredPluginDependency("debuggercore");
18381840
}
18391841
#endif
18401842

@@ -1844,6 +1846,7 @@ extern "C"
18441846
BINARYNINJAPLUGIN bool UIPluginInit()
18451847
#endif
18461848
{
1849+
LogDebug("Native debugger UI loaded!");
18471850
GlobalDebuggerUI::InitializeUI();
18481851
NotificationListener::init();
18491852
DataRendererContainer::RegisterTypeSpecificDataRenderer(new CodeDataRenderer);

0 commit comments

Comments
 (0)