diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-22 21:25:12 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-12-05 20:02:02 +0100 |
commit | 281b64daf46ca5a27c29a14cf31f1b8b6f985d46 (patch) | |
tree | 72656e1fa71315aca8d8835211ae37a8477880cd | |
parent | Merge pull request #1859 from heapo/lut_array_codegen (diff) | |
download | yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar.gz yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar.bz2 yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar.lz yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar.xz yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.tar.zst yuzu-281b64daf46ca5a27c29a14cf31f1b8b6f985d46.zip |
-rw-r--r-- | src/yuzu/configuration/config.cpp | 2 | ||||
-rw-r--r-- | src/yuzu/ui_settings.h | 3 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 83ebbd1fe..ef028cca3 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp @@ -506,6 +506,7 @@ void Config::ReadValues() { UISettings::values.first_start = qt_config->value("firstStart", true).toBool(); UISettings::values.callout_flags = qt_config->value("calloutFlags", 0).toUInt(); UISettings::values.show_console = qt_config->value("showConsole", false).toBool(); + UISettings::values.profile_index = qt_config->value("profileIndex", 0).toUInt(); qt_config->endGroup(); } @@ -695,6 +696,7 @@ void Config::SaveValues() { qt_config->setValue("firstStart", UISettings::values.first_start); qt_config->setValue("calloutFlags", UISettings::values.callout_flags); qt_config->setValue("showConsole", UISettings::values.show_console); + qt_config->setValue("profileIndex", UISettings::values.profile_index); qt_config->endGroup(); } diff --git a/src/yuzu/ui_settings.h b/src/yuzu/ui_settings.h index e80aebc0a..035192aeb 100644 --- a/src/yuzu/ui_settings.h +++ b/src/yuzu/ui_settings.h @@ -58,6 +58,9 @@ struct Values { // logging bool show_console; + // Controllers + uint32_t profile_index; + // Game List bool show_unknown; bool show_add_ons; |