From 43473e09d16c125a2bb833136525f4253eda8cb0 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 29 Nov 2014 09:32:37 -0500 Subject: [PATCH] Implement the "Rating" column. Looks like I forgot to do this... --- Source/Core/DolphinQt/GameList/GameTree.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/GameList/GameTree.cpp b/Source/Core/DolphinQt/GameList/GameTree.cpp index fa3d5babe4..7cf0c874ca 100644 --- a/Source/Core/DolphinQt/GameList/GameTree.cpp +++ b/Source/Core/DolphinQt/GameList/GameTree.cpp @@ -114,6 +114,7 @@ void DGameTree::AddGame(GameFile* item) i->setText(COL_DESCRIPTION, item->GetDescription()); i->setIcon(COL_REGION, QIcon(Resources::GetRegionPixmap(item->GetCountry()))); i->setText(COL_SIZE, NiceSizeFormat(item->GetFileSize())); + i->setIcon(COL_STATE, QIcon(Resources::GetRatingPixmap(item->GetEmuState()))); if (item->IsCompressed()) { for (int col = 0; col < columnCount(); col++)