commit 577ef5e9da6d538001262e95030d1552c4ee5107
parent c3e51dfa8791a3a2e583623c109250dcea8cc64b
Author: Friedolino <[email protected]>
Date: Sat, 19 Sep 2020 10:59:40 +0200
fix the savexml port
loaded_file should be set on loading only
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/Misc/Part.cpp b/src/Misc/Part.cpp
@@ -172,9 +172,10 @@ static const Ports partPorts = {
Part *p = (Part*)d.obj;
if (p->loaded_file[0] == '\0') { // if part was never loaded or saved
time_t rawtime; // make a new name from date and time
+ char filename[32];
time (&rawtime);
const struct tm* timeinfo = localtime (&rawtime);
- strftime (p->loaded_file,23,"%F_%R.xiz",timeinfo);
+ strftime (filename,23,"%F_%R.xiz",timeinfo);
}
p->saveXML(p->loaded_file);
fprintf(stderr, "Part %d saved to %s\n", (p->partno + 1), p->loaded_file);