Add CLI argument to launch the emulator with global config or with default settings (#3688)

* --config-clean, --config-global

* copyright 2025

* fine you win

* copyright 2024
This commit is contained in:
kalaposfos13
2025-10-01 21:28:34 +02:00
committed by GitHub
parent af147debc6
commit 74c0ea8432
4 changed files with 39 additions and 4 deletions

View File

@@ -9,6 +9,13 @@
namespace Config {
enum class ConfigMode {
Default,
Global,
Clean,
};
void setConfigMode(ConfigMode mode);
struct GameInstallDir {
std::filesystem::path path;
bool enabled;