Fix windows build

Signed-off-by: sneedium <sneed@sneedmc.org>
This commit is contained in:
sneedium 2022-11-05 22:14:49 -04:00
parent eb259c9a95
commit 4dbd99dcd2
Signed by: sneedium
GPG Key ID: 906F66490FBE722F

View File

@ -61,7 +61,7 @@
#include "settings/INISettingsObject.h"
#ifdef Q_OS_WIN32
#include <Windows.h>
#include <windows.h>
#endif
const static int GROUP_FILE_FORMAT_VERSION = 1;
@ -311,7 +311,7 @@ bool InstanceList::trashInstance(const InstanceId& id)
qDebug() << "Instance" << id << "has been trashed by the launcher.";
m_trashHistory.push({id, inst->instanceRoot(), trashedLoc, cachedGroupId});
return true;
}