From 1694c55d62d44730d760371d1bf2559de1b191dd Mon Sep 17 00:00:00 2001
From: Narr the Reg <juangerman-13@hotmail.com>
Date: Sat, 10 Sep 2022 12:57:19 -0500
Subject: [PATCH] fix black icon

---
 src/yuzu/multiplayer/lobby_p.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/yuzu/multiplayer/lobby_p.h b/src/yuzu/multiplayer/lobby_p.h
index 8b17075062..068c95acad 100644
--- a/src/yuzu/multiplayer/lobby_p.h
+++ b/src/yuzu/multiplayer/lobby_p.h
@@ -90,6 +90,8 @@ public:
         setData(game_name, GameNameRole);
         if (!smdh_icon.isNull()) {
             setData(smdh_icon, GameIconRole);
+        } else {
+            setData(QIcon::fromTheme(QStringLiteral("chip")).pixmap(32), GameIconRole);
         }
     }
 
-- 
GitLab