Skip to content

Commit

Permalink
Merge pull request #5352 from spycrab/qt_gamelist_icons
Browse files Browse the repository at this point in the history
Qt: Fix platform icons
  • Loading branch information
Helios747 committed May 1, 2017
2 parents e9349cf + 13ca989 commit 86a8a3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/DolphinQt2/GameList/GameListModel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<int>(game->GetPlatformID());
case COL_BANNER:
return game->GetBanner();
case COL_TITLE:
Expand Down

0 comments on commit 86a8a3f

Please sign in to comment.