Qt: Add missing use of isZeroed

This commit is contained in:
Vicki Pfau 2025-03-30 21:33:16 -07:00
parent a9262868fc
commit 93d248859f
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ ROMInfo::ROMInfo(std::shared_ptr<CoreController> controller, QWidget* parent)
#ifdef USE_SQLITE3
if (db) {
NoIntroGame game{};
if (memcmp(sha1, &(const uint8_t[20]) {}, 20) != 0 && NoIntroDBLookupGameBySHA1(db, sha1, &game)) {
if (!isZeroed<20>(sha1) && NoIntroDBLookupGameBySHA1(db, sha1, &game)) {
m_ui.name->setText(game.name);
} else if (crc32 && NoIntroDBLookupGameByCRC(db, crc32, &game)) {
m_ui.name->setText(game.name);