summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-09-12 05:13:54 +0200
committerGitHub <noreply@github.com>2018-09-12 05:13:54 +0200
commit3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2 (patch)
tree49a99a988aa8def9b5d18c90d5e2f409f147bfb0
parentMerge pull request #1300 from lioncash/audio (diff)
parentgame_list: Resolve variable shadowing within LoadCompatibilityList() (diff)
downloadyuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar.gz
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar.bz2
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar.lz
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar.xz
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.tar.zst
yuzu-3ee4fa557f9ee1e2822e3944ebd4e53d7d0430d2.zip
-rw-r--r--src/yuzu/game_list.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 8c6e16d47..3b3b551bb 100644
--- a/src/yuzu/game_list.cpp
+++ b/src/yuzu/game_list.cpp
@@ -366,7 +366,7 @@ void GameList::LoadCompatibilityList() {
QJsonDocument json = QJsonDocument::fromJson(string_content.toUtf8());
QJsonArray arr = json.array();
- for (const QJsonValue& value : arr) {
+ for (const QJsonValueRef& value : arr) {
QJsonObject game = value.toObject();
if (game.contains("compatibility") && game["compatibility"].isDouble()) {
@@ -374,9 +374,9 @@ void GameList::LoadCompatibilityList() {
QString directory = game["directory"].toString();
QJsonArray ids = game["releases"].toArray();
- for (const QJsonValue& value : ids) {
- QJsonObject object = value.toObject();
- QString id = object["id"].toString();
+ for (const QJsonValueRef& id_ref : ids) {
+ QJsonObject id_object = id_ref.toObject();
+ QString id = id_object["id"].toString();
compatibility_list.emplace(
id.toUpper().toStdString(),
std::make_pair(QString::number(compatibility), directory));