mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-03-06 14:27:43 +00:00
Fixed an issue where a temporary setting was retained in the configuration file.
This commit is contained in:
parent
71e40f4eb4
commit
ed60ab4e3a
|
@ -27,18 +27,19 @@ Settings* Settings::sInstance = nullptr;
|
||||||
// functions.
|
// functions.
|
||||||
std::vector<std::string> settings_dont_save {
|
std::vector<std::string> settings_dont_save {
|
||||||
// These options can be set using command-line arguments:
|
// These options can be set using command-line arguments:
|
||||||
"Debug", // --debug
|
"WindowWidth", // Set via --resolution [width] [height]
|
||||||
"ForceFull", // --force-full
|
"WindowHeight", // set via --resolution [width] [height]
|
||||||
"ForceKid", // --force-kid
|
"ParseGamelistOnly" // --gamelist-only
|
||||||
"ForceKiosk", // --force-kiosk
|
|
||||||
"IgnoreGamelist", // --ignore-gamelist
|
"IgnoreGamelist", // --ignore-gamelist
|
||||||
"SplashScreen", // --no-splash
|
"SplashScreen", // --no-splash
|
||||||
"VSync", // --vsync [1/on or 0/off]
|
"Debug", // --debug
|
||||||
#if !defined(_WIN64)
|
#if !defined(_WIN64)
|
||||||
"Windowed", // --windowed
|
"Windowed", // --windowed
|
||||||
#endif
|
#endif
|
||||||
"WindowWidth", // Set via --resolution [width] [height]
|
"VSync", // --vsync [1/on or 0/off]
|
||||||
"WindowHeight", // set via --resolution [width] [height]
|
"ForceFull", // --force-full
|
||||||
|
"ForceKiosk", // --force-kiosk
|
||||||
|
"ForceKid", // --force-kid
|
||||||
|
|
||||||
// These options are not shown in the --help text and are intended
|
// These options are not shown in the --help text and are intended
|
||||||
// for debugging and testing purposes:
|
// for debugging and testing purposes:
|
||||||
|
|
Loading…
Reference in a new issue