summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-08-15 17:14:09 +0200
committerLioncash <mathew1800@gmail.com>2020-08-16 09:58:29 +0200
commitdbb1cbce67213dae3d7b354c8d7ac8e824888e63 (patch)
tree087aa5a70514e7ae07f87f65f9527c2050795348 /src
parentMerge pull request #4528 from lioncash/discard (diff)
downloadyuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar.gz
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar.bz2
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar.lz
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar.xz
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.tar.zst
yuzu-dbb1cbce67213dae3d7b354c8d7ac8e824888e63.zip
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp2
-rw-r--r--src/yuzu/game_list_worker.cpp2
-rw-r--r--src/yuzu/uisettings.h8
3 files changed, 6 insertions, 6 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();
}
diff --git a/src/yuzu/game_list_worker.cpp b/src/yuzu/game_list_worker.cpp
index 643ca6491..c9a395222 100644
--- a/src/yuzu/game_list_worker.cpp
+++ b/src/yuzu/game_list_worker.cpp
@@ -374,7 +374,7 @@ void GameListWorker::run() {
ScanFileSystem(ScanTarget::PopulateGameList, game_dir.path.toStdString(),
game_dir.deep_scan ? 256 : 0, game_list_dir);
}
- };
+ }
emit Finished(watch_list);
}
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h
index bbfeafc55..2d2e82f15 100644
--- a/src/yuzu/uisettings.h
+++ b/src/yuzu/uisettings.h
@@ -29,14 +29,14 @@ extern const Themes themes;
struct GameDir {
QString path;
- bool deep_scan;
- bool expanded;
+ bool deep_scan = false;
+ bool expanded = false;
bool operator==(const GameDir& rhs) const {
return path == rhs.path;
- };
+ }
bool operator!=(const GameDir& rhs) const {
return !operator==(rhs);
- };
+ }
};
struct Values {