diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-20 21:07:56 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-20 21:07:59 +0200 |
commit | ed2fedac138d47e50850c563058fbcc46eb51b0a (patch) | |
tree | 36b7b991a121852ee6e56bad8a6d929c29a05d8f /src | |
parent | yuzu/game_list_p: Amend mentions of SMDH in comments (diff) | |
download | yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar.gz yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar.bz2 yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar.lz yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar.xz yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.tar.zst yuzu-ed2fedac138d47e50850c563058fbcc46eb51b0a.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/game_list_worker.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp index 8687e7c5a..82d2826ba 100644 --- a/src/yuzu/game_list_worker.cpp +++ b/src/yuzu/game_list_worker.cpp @@ -45,7 +45,7 @@ bool HasSupportedFileExtension(const std::string& file_name) { } bool IsExtractedNCAMain(const std::string& file_name) { - return QFileInfo(QString::fromStdString(file_name)).fileName() == "main"; + return QFileInfo(QString::fromStdString(file_name)).fileName() == QStringLiteral("main"); } QString FormatGameName(const std::string& physical_name) { @@ -97,7 +97,7 @@ QList<QStandardItem*> MakeGameListEntry(const std::string& path, const std::stri const auto it = FindMatchingCompatibilityEntry(compatibility_list, program_id); // The game list uses this as compatibility number for untested games - QString compatibility{"99"}; + QString compatibility{QStringLiteral("99")}; if (it != compatibility_list.end()) { compatibility = it->second.first; } |