diff --git a/pcsx2-qt/GameList/GameListModel.cpp b/pcsx2-qt/GameList/GameListModel.cpp index fb4415dc5a..9a705669c2 100644 --- a/pcsx2-qt/GameList/GameListModel.cpp +++ b/pcsx2-qt/GameList/GameListModel.cpp @@ -558,11 +558,11 @@ QIcon GameListModel::getIconForType(GameList::EntryType type) { case GameList::EntryType::PS2Disc: case GameList::EntryType::PS1Disc: - return QIcon(QStringLiteral(":/icons/media-optical-24.png")); + return QIcon::fromTheme("disc-2-line"); case GameList::EntryType::ELF: default: - return QIcon(QStringLiteral(":/icons/applications-system-24.png")); + return QIcon::fromTheme("file-settings-line"); } }