1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-23 12:57:45 +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) // 0 = system, 1 = custom, 2 = built-in (mac only)
// TODO: yes, i know this should be an enum // TODO: yes, i know this should be an enum
int wineVersion = 0; int wineVersion = 0;
bool useEsync, useGamescope, useGamemode; bool useEsync = false, useGamescope = false, useGamemode = false;
bool useDX9 = false; bool useDX9 = false;
bool enableDXVKhud = false; bool enableDXVKhud = false;
bool isSapphire = false; bool isSapphire = false;
QString lobbyURL; QString lobbyURL;
bool rememberUsername, rememberPassword; bool rememberUsername = false, rememberPassword = false;
}; };
struct LoginInformation { struct LoginInformation {