From d644fb2094f623e45bff237ede7d432121f72072 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Sat, 4 Sep 2021 23:51:57 +0200 Subject: [PATCH] GH-4014 do not switch to Qt 5.15.2 on Windows It is unstable for reasons unknown. --- launcher/MultiMC.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/launcher/MultiMC.cpp b/launcher/MultiMC.cpp index 69ba4ac5..c532ce82 100644 --- a/launcher/MultiMC.cpp +++ b/launcher/MultiMC.cpp @@ -126,6 +126,9 @@ QString getIdealPlatform(QString currentPlatform) { } } case Sys::KernelType::Windows: { + // FIXME: 5.15.2 is not stable on Windows, due to a large number of completely unpredictable and hard to reproduce issues + break; +/* if(info.kernelMajor == 6 && info.kernelMinor >= 1) { // Windows 7 return "win32-5.15.2"; @@ -138,6 +141,7 @@ QString getIdealPlatform(QString currentPlatform) { // Below Windows 7 return "win32"; } +*/ } case Sys::KernelType::Undetermined: case Sys::KernelType::Linux: {