Skip to content

Commit

Permalink
Improve multi-datapack warning
Browse files Browse the repository at this point in the history
  • Loading branch information
oblivioncth committed Nov 9, 2023
1 parent 9aec464 commit d272763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/fp-db.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ DbError Db::getGameData(GameData& data, const QUuid& gameId)
if(searchResult.size == 0)
return DbError(); // Game doesn't have data pack
else if(searchResult.size > 1)
qWarning("Entry with more than one data pack, using most recent.");
qWarning("Entry %s has more than one data pack, using most recent.", qPrintable(gameId.toString(QUuid::WithoutBraces)));

// Advance result to first record
searchResult.result.next();
Expand Down

0 comments on commit d272763

Please sign in to comment.