From 145d1a686bde2f2303ef46d1c065c573aaf8bb9c Mon Sep 17 00:00:00 2001 From: redstrate Date: Tue, 2 Nov 2021 08:50:14 -0400 Subject: [PATCH] Read wine options at boot --- src/xivlauncher.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/xivlauncher.cpp b/src/xivlauncher.cpp index 6935d5a..0013805 100755 --- a/src/xivlauncher.cpp +++ b/src/xivlauncher.cpp @@ -134,6 +134,10 @@ void LauncherWindow::readInitialInformation() { bootVersion = readVersion(gamePath + "/boot/ffxivboot.ver"); gameVersion = readVersion(gamePath + "/game/ffxivgame.ver"); + + useEsync = settings.value("useEsync", false).toBool(); + useGamemode = settings.value("useGamemode", false).toBool(); + useGamescope = settings.value("useGamescope", false).toBool(); } LauncherWindow::LauncherWindow(QWidget* parent) :