summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar ameerj2021-10-14 00:08:57 -0400
committerGravatar Fernando Sahmkow2021-11-16 22:11:31 +0100
commitca1db6311631df4945a223c556dba1b9db5b5484 (patch)
treebcfeb7f10827068c070223a5d98267dae5cc8bd2 /src
parentvk_texture_cache: Use 3D to scale images when blit is unsupported (diff)
downloadyuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.gz
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.tar.xz
yuzu-ca1db6311631df4945a223c556dba1b9db5b5484.zip
yuzu: Fix build errors
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 6bd0f9ee9..2af95dbe5 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -159,7 +159,7 @@ GameListSearchField::GameListSearchField(GameList* parent) : QWidget{parent} {
159 * @return true if the haystack contains all words of userinput 159 * @return true if the haystack contains all words of userinput
160 */ 160 */
161static bool ContainsAllWords(const QString& haystack, const QString& userinput) { 161static bool ContainsAllWords(const QString& haystack, const QString& userinput) {
162 const QStringList userinput_split = userinput.split(QLatin1Char{' '}, Qt::SkipEmptyParts); 162 const QStringList userinput_split = userinput.split(QLatin1Char{' '}, QString::SkipEmptyParts);
163 163
164 return std::all_of(userinput_split.begin(), userinput_split.end(), 164 return std::all_of(userinput_split.begin(), userinput_split.end(),
165 [&haystack](const QString& s) { return haystack.contains(s); }); 165 [&haystack](const QString& s) { return haystack.contains(s); });