From f8b9c1d46025bd8114a1a1ba482e2405354ad7dc Mon Sep 17 00:00:00 2001 From: redstrate Date: Tue, 9 Nov 2021 13:52:36 -0500 Subject: [PATCH] Set default options in profile struct --- src/xivlauncher.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/xivlauncher.h b/src/xivlauncher.h index 4f4f18f..333b1ff 100755 --- a/src/xivlauncher.h +++ b/src/xivlauncher.h @@ -24,14 +24,13 @@ struct ProfileSettings { // 0 = system, 1 = custom, 2 = built-in (mac only) // TODO: yes, i know this should be an enum int wineVersion = 0; - bool useEsync, useGamescope, useGamemode; + bool useEsync = false, useGamescope = false, useGamemode = false; bool useDX9 = false; bool enableDXVKhud = false; - bool isSapphire = false; QString lobbyURL; - bool rememberUsername, rememberPassword; + bool rememberUsername = false, rememberPassword = false; }; struct LoginInformation {