diff options
| author | 2022-09-10 12:57:19 -0500 | |
|---|---|---|
| committer | 2022-09-10 18:56:06 -0500 | |
| commit | 1694c55d62d44730d760371d1bf2559de1b191dd (patch) | |
| tree | 96d7cde870121138483e5928400ce607ed5f9402 /src | |
| parent | yuzu: Multiple room UI improvements (diff) | |
| download | yuzu-1694c55d62d44730d760371d1bf2559de1b191dd.tar.gz yuzu-1694c55d62d44730d760371d1bf2559de1b191dd.tar.xz yuzu-1694c55d62d44730d760371d1bf2559de1b191dd.zip | |
fix black icon
Diffstat (limited to '')
| -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: | |||
| 90 | setData(game_name, GameNameRole); | 90 | setData(game_name, GameNameRole); |
| 91 | if (!smdh_icon.isNull()) { | 91 | if (!smdh_icon.isNull()) { |
| 92 | setData(smdh_icon, GameIconRole); | 92 | setData(smdh_icon, GameIconRole); |
| 93 | } else { | ||
| 94 | setData(QIcon::fromTheme(QStringLiteral("chip")).pixmap(32), GameIconRole); | ||
| 93 | } | 95 | } |
| 94 | } | 96 | } |
| 95 | 97 | ||