From 13ca98923b53db37d51f2f7ac16fd7411187e7da Mon Sep 17 00:00:00 2001 From: spycrab Date: Mon, 1 May 2017 13:40:23 +0200 Subject: [PATCH] Qt: Fix platform icons --- Source/Core/DolphinQt2/GameList/GameListModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/GameList/GameListModel.cpp b/Source/Core/DolphinQt2/GameList/GameListModel.cpp index 97a9337add..5e7316f7ef 100644 --- a/Source/Core/DolphinQt2/GameList/GameListModel.cpp +++ b/Source/Core/DolphinQt2/GameList/GameListModel.cpp @@ -24,7 +24,7 @@ QVariant GameListModel::data(const QModelIndex& index, int role) const switch (index.column()) { case COL_PLATFORM: - return game->GetPlatform(); + return static_cast(game->GetPlatformID()); case COL_BANNER: return game->GetBanner(); case COL_TITLE: