game_list: Remove a reference of a reference
This commit is contained in:
parent
7ce17b2cf6
commit
6d7514ccec
1 changed files with 2 additions and 2 deletions
|
@ -373,7 +373,7 @@ void GameList::LoadCompatibilityList() {
|
||||||
QJsonDocument json = QJsonDocument::fromJson(string_content.toUtf8());
|
QJsonDocument json = QJsonDocument::fromJson(string_content.toUtf8());
|
||||||
QJsonArray arr = json.array();
|
QJsonArray arr = json.array();
|
||||||
|
|
||||||
for (const QJsonValueRef& value : arr) {
|
for (const QJsonValueRef value : arr) {
|
||||||
QJsonObject game = value.toObject();
|
QJsonObject game = value.toObject();
|
||||||
|
|
||||||
if (game.contains("compatibility") && game["compatibility"].isDouble()) {
|
if (game.contains("compatibility") && game["compatibility"].isDouble()) {
|
||||||
|
@ -381,7 +381,7 @@ void GameList::LoadCompatibilityList() {
|
||||||
QString directory = game["directory"].toString();
|
QString directory = game["directory"].toString();
|
||||||
QJsonArray ids = game["releases"].toArray();
|
QJsonArray ids = game["releases"].toArray();
|
||||||
|
|
||||||
for (const QJsonValueRef& id_ref : ids) {
|
for (const QJsonValueRef id_ref : ids) {
|
||||||
QJsonObject id_object = id_ref.toObject();
|
QJsonObject id_object = id_ref.toObject();
|
||||||
QString id = id_object["id"].toString();
|
QString id = id_object["id"].toString();
|
||||||
compatibility_list.emplace(
|
compatibility_list.emplace(
|
||||||
|
|
Loading…
Reference in a new issue