summaryrefslogtreecommitdiffstats
path: root/src/yuzu
diff options
context:
space:
mode:
authorN00byKing <N00byKing@users.noreply.github.com>2018-01-16 17:55:06 +0100
committerGitHub <noreply@github.com>2018-01-16 17:55:06 +0100
commit7c6c8da218973ab2adc4b732086f6a12e7452b65 (patch)
treeaa7cba2258da597ad38f5d503de71b8734aa588f /src/yuzu
parentImplement Pull #3333 from citra: citra_qt: Pause emulation on CoreError (#39) (diff)
downloadyuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar.gz
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar.bz2
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar.lz
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar.xz
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.tar.zst
yuzu-7c6c8da218973ab2adc4b732086f6a12e7452b65.zip
Diffstat (limited to 'src/yuzu')
-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 532c4ae63..679c89828 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -174,7 +174,7 @@ void GameList::onTextChanged(const QString& newText) {
child_file->data(GameListItemPath::ProgramIdRole).toString().toLower();
// Only items which filename in combination with its title contains all words
- // that are in the searchfiel will be visible in the gamelist
+ // that are in the searchfield will be visible in the gamelist
// The search is case insensitive because of toLower()
// I decided not to use Qt::CaseInsensitive in containsAllWords to prevent
// multiple conversions of edit_filter_text for each game in the gamelist