diff options
author | Petr Mrázek <peterix@gmail.com> | 2021-09-04 23:51:57 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2021-09-04 23:51:57 +0200 |
commit | d644fb2094f623e45bff237ede7d432121f72072 (patch) | |
tree | c329355025afeff712ea9838595dcc9596a84336 /launcher | |
parent | 823e7d22c70ac56f3bba6a6685c67902e8535ad9 (diff) | |
download | PrismLauncher-d644fb2094f623e45bff237ede7d432121f72072.tar.gz PrismLauncher-d644fb2094f623e45bff237ede7d432121f72072.tar.bz2 PrismLauncher-d644fb2094f623e45bff237ede7d432121f72072.zip |
GH-4014 do not switch to Qt 5.15.2 on Windows
It is unstable for reasons unknown.
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/MultiMC.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
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: { |