diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-07-17 06:42:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-17 06:42:46 +0200 |
commit | aaf1726965313a0f8712479d0619ddc81f6347a0 (patch) | |
tree | 665f5ae9af8ab793520c64aa3a596a0086787181 /launcher/Application.cpp | |
parent | 6b970954d6531f74fb661cd629c9e760e6a785d3 (diff) | |
parent | a2a09ffe01fe8eb6cd1f557b0feb98ed0271151e (diff) | |
download | PrismLauncher-aaf1726965313a0f8712479d0619ddc81f6347a0.tar.gz PrismLauncher-aaf1726965313a0f8712479d0619ddc81f6347a0.tar.bz2 PrismLauncher-aaf1726965313a0f8712479d0619ddc81f6347a0.zip |
Merge pull request #1357 from getchoo/quilt-beacon
feat: add toggle for quilt beacon
Diffstat (limited to 'launcher/Application.cpp')
-rw-r--r-- | launcher/Application.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/launcher/Application.cpp b/launcher/Application.cpp index a9bcebb1..1389922e 100644 --- a/launcher/Application.cpp +++ b/launcher/Application.cpp @@ -9,6 +9,7 @@ * Copyright (C) 2022 Tayou <tayou@gmx.net> * Copyright (C) 2023 TheKodeToad <TheKodeToad@proton.me> * Copyright (C) 2023 Rachel Powers <508861+Ryex@users.noreply.github.com> + * Copyright (C) 2023 seth <getchoo at tuta dot io> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -610,6 +611,9 @@ Application::Application(int &argc, char **argv) : QApplication(argc, argv) m_settings->registerSetting("IgnoreJavaCompatibility", false); m_settings->registerSetting("IgnoreJavaWizard", false); + // Mod loader settings + m_settings->registerSetting("DisableQuiltBeacon", false); + // Native library workarounds m_settings->registerSetting("UseNativeOpenAL", false); m_settings->registerSetting("UseNativeGLFW", false); |