1
0
Fork 0

DBG: fixed a bug with the debuggee notes being cleared on manual database save

This commit is contained in:
mrexodia 2016-02-19 04:26:53 +01:00
parent d9f0639b0d
commit 27c83507e8
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,6 @@ void DbSave(DbLoadSaveType saveType)
json_object_set_new(root, "notes", json_string(text));
BridgeFree(text);
}
GuiSetDebuggeeNotes("");
}
WString wdbpath = StringUtils::Utf8ToUtf16(dbpath);
@ -181,6 +180,7 @@ void DbClose()
LoopClear();
BpClear();
PatchClear();
GuiSetDebuggeeNotes("");
}
void DbSetPath(const char* Directory, const char* ModulePath)