--Bug fixes

-Numbering of rendered files was wrong.
 -Truchet_hex_fill was not compiling with some newer Nvidia drivers.

--Code changes
 -Update Wix installer to use VS 2019.
This commit is contained in:
Person
2021-08-08 15:20:09 -06:00
parent 2219ea755f
commit f476afa545
6 changed files with 19 additions and 18 deletions

View File

@ -208,13 +208,13 @@ public:
QString base = original.completeBaseName();
const QString path = original.absolutePath() + '/';
const QString extension = original.suffix();
newPath = path + base + "." + extension;
do
while (QFile::exists(newPath))
{
base = IncrementTrailingUnderscoreInt(base);
newPath = path + base + "." + extension;
}
while (QFile::exists(newPath));
return newPath;
}