Skip to content
Snippets Groups Projects
Commit 7fe10dea authored by Lioncash's avatar Lioncash
Browse files

game_list: Use QJsonValueRef() within LoadCompatibilityList()

This way, we aren't constructing unnecessary QJsonValue instances.
parent 1470b85a
No related branches found
No related tags found
No related merge requests found
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment