summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-12 04:28:28 +0200
committerLioncash <mathew1800@gmail.com>2018-09-12 04:28:35 +0200
commit7fe10dea3ede8553bcc4ac8e8a34707557f789b2 (patch)
tree0c0e08bd519d003adf45843327b1af2c1d3ef4a3 /src
parentMerge pull request #1291 from lioncash/default (diff)
downloadyuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar.gz
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar.bz2
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar.lz
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar.xz
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.tar.zst
yuzu-7fe10dea3ede8553bcc4ac8e8a34707557f789b2.zip
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/game_list.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/game_list.cpp b/src/yuzu/game_list.cpp
index 8c6e16d47..9dfd6a708 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,7 +374,7 @@ void GameList::LoadCompatibilityList() {
QString directory = game["directory"].toString();
QJsonArray ids = game["releases"].toArray();
- for (const QJsonValue& value : ids) {
+ for (const QJsonValueRef& value : ids) {
QJsonObject object = value.toObject();
QString id = object["id"].toString();
compatibility_list.emplace(