diff --git a/src/citra_qt/game_list.cpp b/src/citra_qt/game_list.cpp index 390d0c7e5..f12cc41d3 100644 --- a/src/citra_qt/game_list.cpp +++ b/src/citra_qt/game_list.cpp @@ -545,7 +545,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()) { @@ -553,7 +553,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(