yuzu: Resolve -Wextra-semi warnings
While we're in the same area, we can ensure GameDir member variables are always initialized to consistent values.
This commit is contained in:
parent
f72be7af2d
commit
8d6927dc4c
|
@ -391,7 +391,7 @@ bool GameList::isEmpty() const {
|
||||||
(type == GameListItemType::InstalledDir || type == GameListItemType::SystemDir)) {
|
(type == GameListItemType::InstalledDir || type == GameListItemType::SystemDir)) {
|
||||||
item_model->invisibleRootItem()->removeRow(child->row());
|
item_model->invisibleRootItem()->removeRow(child->row());
|
||||||
i--;
|
i--;
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
return !item_model->invisibleRootItem()->hasChildren();
|
return !item_model->invisibleRootItem()->hasChildren();
|
||||||
}
|
}
|
||||||
|
|
|
@ -152,7 +152,8 @@ void GameListWorker::run() {
|
||||||
AddFstEntriesToGameList(game_dir.path.toStdString(), game_dir.deep_scan ? 256 : 0,
|
AddFstEntriesToGameList(game_dir.path.toStdString(), game_dir.deep_scan ? 256 : 0,
|
||||||
game_list_dir);
|
game_list_dir);
|
||||||
}
|
}
|
||||||
};
|
}
|
||||||
|
|
||||||
emit Finished(watch_list);
|
emit Finished(watch_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -30,14 +30,14 @@ extern const Themes themes;
|
||||||
|
|
||||||
struct GameDir {
|
struct GameDir {
|
||||||
QString path;
|
QString path;
|
||||||
bool deep_scan;
|
bool deep_scan = false;
|
||||||
bool expanded;
|
bool expanded = false;
|
||||||
bool operator==(const GameDir& rhs) const {
|
bool operator==(const GameDir& rhs) const {
|
||||||
return path == rhs.path;
|
return path == rhs.path;
|
||||||
};
|
}
|
||||||
bool operator!=(const GameDir& rhs) const {
|
bool operator!=(const GameDir& rhs) const {
|
||||||
return !operator==(rhs);
|
return !operator==(rhs);
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
enum class GameListIconSize {
|
enum class GameListIconSize {
|
||||||
|
|
Reference in New Issue