diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2022-09-10 12:57:19 -0500 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2022-09-10 18:56:06 -0500 |
commit | 1694c55d62d44730d760371d1bf2559de1b191dd (patch) | |
tree | 96d7cde870121138483e5928400ce607ed5f9402 /src | |
parent | 8f207bd93ddb9778f0242fca0dab6ef155bd2a97 (diff) |
fix black icon
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/multiplayer/lobby_p.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/multiplayer/lobby_p.h b/src/yuzu/multiplayer/lobby_p.h index 8b1707506..068c95aca 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); } } |