diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-08-10 17:33:55 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-09-20 16:01:08 +0200 |
commit | 98b6f901721aaeac3ba377729ef95272eba09410 (patch) | |
tree | f98bd6657eed89e3f82c0e5926d290a77d3fe06e | |
parent | 7e280de361584a70fae4426cf36ca47f694ef61a (diff) | |
download | PrismLauncher-98b6f901721aaeac3ba377729ef95272eba09410.tar.gz PrismLauncher-98b6f901721aaeac3ba377729ef95272eba09410.tar.bz2 PrismLauncher-98b6f901721aaeac3ba377729ef95272eba09410.zip |
fix: add more legacy architectures
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
-rw-r--r-- | launcher/RuntimeContext.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/RuntimeContext.h b/launcher/RuntimeContext.h index d98d407f..6090897c 100644 --- a/launcher/RuntimeContext.h +++ b/launcher/RuntimeContext.h @@ -30,7 +30,7 @@ struct RuntimeContext { // "Legacy" refers to the fact that Mojang assumed that these are the only two architectures bool isLegacyArch() const { - QSet<QString> legacyArchitectures{"amd64", "x86_64", "i686"}; + QSet<QString> legacyArchitectures{"amd64", "x86_64", "i386", "i686", "x86"}; return legacyArchitectures.contains(mappedJavaRealArchitecture()); } |