From 1f1ac98f10ea77c5bc9a477642266a39b33c720a Mon Sep 17 00:00:00 2001 From: vitor-k Date: Thu, 5 Sep 2019 22:54:39 -0300 Subject: [PATCH] Fix clang format for long-title --- src/citra_qt/game_list_p.h | 2 +- src/citra_qt/uisettings.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/citra_qt/game_list_p.h b/src/citra_qt/game_list_p.h index 3411445e7..82c7fcaad 100644 --- a/src/citra_qt/game_list_p.h +++ b/src/citra_qt/game_list_p.h @@ -77,7 +77,7 @@ static QString GetQStringShortTitleFromSMDH(const Loader::SMDH& smdh, * @return QString long title */ static QString GetQStringLongTitleFromSMDH(const Loader::SMDH& smdh, - Loader::SMDH::TitleLanguage language) { + Loader::SMDH::TitleLanguage language) { return QString::fromUtf16(smdh.GetLongTitle(language).data()); } diff --git a/src/citra_qt/uisettings.h b/src/citra_qt/uisettings.h index e94b94d20..c33db6e75 100644 --- a/src/citra_qt/uisettings.h +++ b/src/citra_qt/uisettings.h @@ -46,11 +46,11 @@ enum class GameListIconSize { }; enum class GameListText { - NoText = -1, ///< No text - FileName, ///< Display the file name of the entry - FullPath, ///< Display the full path of the entry - TitleName, ///< Display the name of the title - TitleID, ///< Display the title ID + NoText = -1, ///< No text + FileName, ///< Display the file name of the entry + FullPath, ///< Display the full path of the entry + TitleName, ///< Display the name of the title + TitleID, ///< Display the title ID LongTitleName, ///< Display the long name of the title }; // The length of the GameListText, excluding NoText