Fix accidentally making the grid view the default (woops)

This commit is contained in:
Aloshi 2013-12-23 18:31:37 -06:00
parent 4df8fc9af0
commit 120f9a4e7b

View file

@ -145,7 +145,8 @@ std::shared_ptr<IGameListView> ViewController::getGameListView(SystemData* syste
else
view = std::shared_ptr<IGameListView>(new BasicGameListView(mWindow, system->getRootFolder()));
view = std::shared_ptr<IGameListView>(new GridGameListView(mWindow, system->getRootFolder()));
// uncomment for experimental "image grid" view
//view = std::shared_ptr<IGameListView>(new GridGameListView(mWindow, system->getRootFolder()));
view->setTheme(system->getTheme());
}else{