Compare commits

..

3 Commits

Author SHA1 Message Date
Guillaume Jacquemin 4c460890a4 Update Corrade, Magnum, and ImGui. 2022-04-16 16:39:55 +02:00
Guillaume Jacquemin e172e3356d CMakeLists: bump version number.
And set a new codename, too.
2022-04-16 01:06:27 +02:00
Guillaume Jacquemin 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
1 changed files with 1 additions and 1 deletions

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;
}