Disable window titles and isons again, windows build fixes
This commit is contained in:
parent
ad1f2c530c
commit
e993adaf44
@ -218,6 +218,7 @@ public class OneSixLauncher implements Launcher
|
||||
e.printStackTrace(System.err);
|
||||
return -1;
|
||||
}
|
||||
/*
|
||||
final java.nio.ByteBuffer[] icons = IconLoader.load("icon.png");
|
||||
new Thread() {
|
||||
public void run() {
|
||||
@ -263,7 +264,7 @@ public class OneSixLauncher implements Launcher
|
||||
}
|
||||
}
|
||||
.start();
|
||||
|
||||
*/
|
||||
// init params for the main method to chomp on.
|
||||
String[] paramsArray = mcparams.toArray(new String[mcparams.size()]);
|
||||
try
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include "MMCJson.h"
|
||||
#include <QString>
|
||||
#include <QStringList>
|
||||
#include <math.h>
|
||||
|
||||
bool MMCJson::ensureBoolean(const QJsonValue val, const QString what)
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -68,7 +68,7 @@ bool VersionFinal::preremove(VersionPatchPtr patch)
|
||||
{
|
||||
QString fullpath =PathCombine(m_instance->jarModsDir(), jarmod->name);
|
||||
QFileInfo finfo (fullpath);
|
||||
if(finfo.exists(fullpath))
|
||||
if(finfo.exists())
|
||||
ok &= QFile::remove(fullpath);
|
||||
}
|
||||
return ok;
|
||||
|
Loading…
Reference in New Issue
Block a user