Compare commits

..

3 commits

Author SHA1 Message Date
4c460890a4 Update Corrade, Magnum, and ImGui. 2022-04-16 16:39:55 +02:00
e172e3356d CMakeLists: bump version number.
And set a new codename, too.
2022-04-16 01:06:27 +02:00
65b5219fd5 CMakeLists: do some dependency cleanup.
I guess I initially planned to make the Save Tool use Interconnect, and
there was a Magnum module that prevented me from disabling
PluginManager.
2022-04-16 01:05:00 +02:00

View file

@ -132,7 +132,7 @@ auto UESaveFile::saveToFile() -> bool {
writer.closeFile();
if(!Utility::Path::copy(_filepath + ".tmp"_s, _filepath)) {
if(!temp_file && !Utility::Path::copy(_filepath + ".tmp"_s, _filepath)) {
_lastError = "Couldn't save the file properly.";
return false;
}