diff --git a/src/citra_qt/configuration/config.cpp b/src/citra_qt/configuration/config.cpp
index ddcb71e3d..6b214216e 100644
--- a/src/citra_qt/configuration/config.cpp
+++ b/src/citra_qt/configuration/config.cpp
@@ -307,13 +307,13 @@ void Config::ReadValues() {
UISettings::values.game_list_icon_size = UISettings::GameListIconSize{icon_size};
int row_1 = ReadSetting("row1", 2).toInt();
- if (row_1 < 0 || row_1 > 3) {
+ if (row_1 < 0 || row_1 >= UISettings::GAME_LIST_TEXT_LENGTH) {
row_1 = 2;
}
UISettings::values.game_list_row_1 = UISettings::GameListText{row_1};
int row_2 = ReadSetting("row2", 0).toInt();
- if (row_2 < -1 || row_2 > 3) {
+ if (row_2 < -1 || row_2 >= UISettings::GAME_LIST_TEXT_LENGTH) {
row_2 = 0;
}
UISettings::values.game_list_row_2 = UISettings::GameListText{row_2};
diff --git a/src/citra_qt/configuration/configure_ui.ui b/src/citra_qt/configuration/configure_ui.ui
index 82a5a4283..c9a0a659e 100644
--- a/src/citra_qt/configuration/configure_ui.ui
+++ b/src/citra_qt/configuration/configure_ui.ui
@@ -131,12 +131,12 @@
-
- Title Name (long)
+ Title ID
-
- Title ID
+ Title Name (long)
@@ -176,12 +176,12 @@
-
- Title Name (long)
+ Title ID
-
- Title ID
+ Title Name (long)
diff --git a/src/citra_qt/uisettings.h b/src/citra_qt/uisettings.h
index eaef36f3e..e94b94d20 100644
--- a/src/citra_qt/uisettings.h
+++ b/src/citra_qt/uisettings.h
@@ -50,9 +50,11 @@ enum class GameListText {
FileName, ///< Display the file name of the entry
FullPath, ///< Display the full path of the entry
TitleName, ///< Display the name of the title
- LongTitleName, ///< Display the long name of the title
TitleID, ///< Display the title ID
+ LongTitleName, ///< Display the long name of the title
};
+// The length of the GameListText, excluding NoText
+constexpr int GAME_LIST_TEXT_LENGTH = 5;
struct Values {
QByteArray geometry;