Disable window titles and isons again, windows build fixes

This commit is contained in:
Petr Mrázek
2014-05-11 16:43:20 +02:00
parent ad1f2c530c
commit e993adaf44
4 changed files with 7 additions and 5 deletions

View File

@@ -298,8 +298,8 @@ void OneSixUpdate::jarlibFinished()
QString fullJarPath = entry->getFullPath();
QString fullStrippedJarPath = entryStripped->getFullPath();
if (entry->md5sum != jarHashOnEntry || !QFileInfo::exists(fullStrippedJarPath))
QFileInfo finfo(fullStrippedJarPath);
if (entry->md5sum != jarHashOnEntry || !finfo.exists())
{
stripJar(fullJarPath, fullStrippedJarPath);
}
@@ -500,4 +500,4 @@ void OneSixUpdate::fmllibsFailed()
{
emitFailed("Game update failed: it was impossible to fetch the required FML libraries.");
return;
}
}