From 764600704d9cd83d8a2cdeec677b8a6e3aefd9b6 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 16 Mar 2026 01:42:59 +0500 Subject: [PATCH 1/2] fix(InstanceList): include lowercase windows.h Signed-off-by: Octol1ttle --- launcher/InstanceList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/InstanceList.cpp b/launcher/InstanceList.cpp index 7c4997cf9..8f58d9f39 100644 --- a/launcher/InstanceList.cpp +++ b/launcher/InstanceList.cpp @@ -64,7 +64,7 @@ #include "settings/INISettingsObject.h" #ifdef Q_OS_WIN32 -#include +#include #endif const static int GROUP_FILE_FORMAT_VERSION = 1; From 13d9e0be4d996d6fff2aac787442ce9254786c90 Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Mon, 16 Mar 2026 01:43:05 +0500 Subject: [PATCH 2/2] InstanceList: clean up includes Signed-off-by: Octol1ttle --- launcher/InstanceList.cpp | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/launcher/InstanceList.cpp b/launcher/InstanceList.cpp index 8f58d9f39..1fe96144d 100644 --- a/launcher/InstanceList.cpp +++ b/launcher/InstanceList.cpp @@ -34,33 +34,28 @@ * limitations under the License. */ +#include "InstanceList.h" + #include -#include #include #include #include -#include #include #include #include -#include #include #include -#include -#include #include #include -#include #include "BaseInstance.h" #include "ExponentialSeries.h" #include "FileSystem.h" -#include "InstanceList.h" + #include "InstanceTask.h" #include "NullInstance.h" #include "WatchLock.h" #include "minecraft/MinecraftInstance.h" -#include "minecraft/ShortcutUtils.h" #include "settings/INISettingsObject.h" #ifdef Q_OS_WIN32