diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-08-08 20:49:49 +0200 |
---|---|---|
committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-08-08 21:16:37 +0200 |
commit | f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf (patch) | |
tree | 34ddbf24cfed468811c289f2dbf790148ad9c337 /launcher/ui/dialogs/NewInstanceDialog.cpp | |
parent | 75f92de8f8517142289dc76d071cfb4fa724598c (diff) | |
download | PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.tar.gz PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.tar.bz2 PrismLauncher-f873cd5b1aa17fe8119f27cc5d9b9eba10bd42bf.zip |
refactor: store current capabilities
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
Diffstat (limited to 'launcher/ui/dialogs/NewInstanceDialog.cpp')
-rw-r--r-- | launcher/ui/dialogs/NewInstanceDialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/NewInstanceDialog.cpp b/launcher/ui/dialogs/NewInstanceDialog.cpp index 35bba9be..675f8b15 100644 --- a/launcher/ui/dialogs/NewInstanceDialog.cpp +++ b/launcher/ui/dialogs/NewInstanceDialog.cpp @@ -157,7 +157,7 @@ QList<BasePage *> NewInstanceDialog::getPages() pages.append(new VanillaPage(this)); pages.append(importPage); pages.append(new AtlPage(this)); - if (APPLICATION->currentCapabilities() & Application::SupportsFlame) + if (APPLICATION->capabilities() & Application::SupportsFlame) pages.append(new FlamePage(this)); pages.append(new FtbPage(this)); pages.append(new LegacyFTB::Page(this)); |