Просмотр исходного кода

ui_settings: Add UI setting for input profile index

Zach Hilman 7 лет назад
Родитель
Сommit
281b64daf4
2 измененных файлов с 5 добавлено и 0 удалено
  1. 2 0
      src/yuzu/configuration/config.cpp
  2. 3 0
      src/yuzu/ui_settings.h

+ 2 - 0
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();
 }
 

+ 3 - 0
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;