1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 04:57:44 +00:00

Set default options in profile struct

This commit is contained in:
redstrate 2021-11-09 13:52:36 -05:00
parent 36220ffe7b
commit f8b9c1d460

View file

@ -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 {