DBG: fixed a bug with the debuggee notes being cleared on manual database save
This commit is contained in:
parent
d9f0639b0d
commit
27c83507e8
|
@ -59,7 +59,6 @@ void DbSave(DbLoadSaveType saveType)
|
||||||
json_object_set_new(root, "notes", json_string(text));
|
json_object_set_new(root, "notes", json_string(text));
|
||||||
BridgeFree(text);
|
BridgeFree(text);
|
||||||
}
|
}
|
||||||
GuiSetDebuggeeNotes("");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WString wdbpath = StringUtils::Utf8ToUtf16(dbpath);
|
WString wdbpath = StringUtils::Utf8ToUtf16(dbpath);
|
||||||
|
@ -181,6 +180,7 @@ void DbClose()
|
||||||
LoopClear();
|
LoopClear();
|
||||||
BpClear();
|
BpClear();
|
||||||
PatchClear();
|
PatchClear();
|
||||||
|
GuiSetDebuggeeNotes("");
|
||||||
}
|
}
|
||||||
|
|
||||||
void DbSetPath(const char* Directory, const char* ModulePath)
|
void DbSetPath(const char* Directory, const char* ModulePath)
|
||||||
|
|
Loading…
Reference in New Issue