diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-08-16 17:06:24 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-23 11:53:30 -0400 |
commit | 4112dd6b4ecb35fcbdfb65786ea5c6c57c95f1ef (patch) | |
tree | 1829db22c349ed69489a316cd4555ddcd8af892b /src/yuzu/configuration/config.cpp | |
parent | bf33f80fae1e97f48a62e16b1e965d7994ac4c45 (diff) |
qt: Make default row data title name and title id
Helps with installed games by making the title not a hexadecimal id string, instead the name.
Diffstat (limited to 'src/yuzu/configuration/config.cpp')
-rw-r--r-- | src/yuzu/configuration/config.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 76c4cb1652..60b6d6d441 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp @@ -126,8 +126,8 @@ void Config::ReadValues() { qt_config->beginGroup("UIGameList"); UISettings::values.show_unknown = qt_config->value("show_unknown", true).toBool(); UISettings::values.icon_size = qt_config->value("icon_size", 64).toUInt(); - UISettings::values.row_1_text_id = qt_config->value("row_1_text_id", 0).toUInt(); - UISettings::values.row_2_text_id = qt_config->value("row_2_text_id", 3).toUInt(); + UISettings::values.row_1_text_id = qt_config->value("row_1_text_id", 3).toUInt(); + UISettings::values.row_2_text_id = qt_config->value("row_2_text_id", 2).toUInt(); qt_config->endGroup(); qt_config->beginGroup("UILayout"); |