summaryrefslogtreecommitdiff
path: root/src/yuzu/game_list.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-15 11:14:09 -0400
committerLioncash <mathew1800@gmail.com>2020-08-16 03:58:29 -0400
commitdbb1cbce67213dae3d7b354c8d7ac8e824888e63 (patch)
tree087aa5a70514e7ae07f87f65f9527c2050795348 /src/yuzu/game_list.cpp
parentdb96034ea429cf0b0b5e2bac790392d9e2f50990 (diff)
yuzu: Resolve -Wextra-semi warnings
While we're in the same area, we can ensure GameDir member variables are always initialized to consistent values.
Diffstat (limited to 'src/yuzu/game_list.cpp')
-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 62acc3720..967ef4a21 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -406,7 +406,7 @@ bool GameList::isEmpty() const {
type == GameListItemType::SysNandDir)) {
item_model->invisibleRootItem()->removeRow(child->row());
i--;
- };
+ }
}
return !item_model->invisibleRootItem()->hasChildren();
}