From 42df874078fb11e2c41430991b23f5b765a703ee Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Sun, 30 Jul 2023 09:02:24 -0400 Subject: [PATCH] Fix gamemode build error --- launcher/src/launchercore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/src/launchercore.cpp b/launcher/src/launchercore.cpp index bf0e192..7207b3d 100755 --- a/launcher/src/launchercore.cpp +++ b/launcher/src/launchercore.cpp @@ -206,7 +206,7 @@ void LauncherCore::launchExecutable(const Profile &profile, QProcess *process, c #endif #ifdef ENABLE_GAMEMODE - if (isGame && profile.useGamemode) { + if (isGame && profile.gamemodeEnabled()) { gamemode_request_start(); } #endif