mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-16 13:14:51 -04:00
--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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user