From 93d248859f3dd1f656d4efe4805be46788b89fbf Mon Sep 17 00:00:00 2001 From: Vicki Pfau Date: Sun, 30 Mar 2025 21:33:16 -0700 Subject: [PATCH] Qt: Add missing use of isZeroed --- src/platform/qt/ROMInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/platform/qt/ROMInfo.cpp b/src/platform/qt/ROMInfo.cpp index e2bd037e5..3cd8c3f01 100644 --- a/src/platform/qt/ROMInfo.cpp +++ b/src/platform/qt/ROMInfo.cpp @@ -80,7 +80,7 @@ ROMInfo::ROMInfo(std::shared_ptr 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);