From d9c885baf3b32aa00b3d772d2221e705b98185db Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Fri, 30 Oct 2020 13:08:08 +0100 Subject: [PATCH] Fixed a compile error caused by a call to a deleted function. --- es-app/src/views/gamelist/ISimpleGameListView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/views/gamelist/ISimpleGameListView.cpp b/es-app/src/views/gamelist/ISimpleGameListView.cpp index e00b47b4b..caf755bd1 100644 --- a/es-app/src/views/gamelist/ISimpleGameListView.cpp +++ b/es-app/src/views/gamelist/ISimpleGameListView.cpp @@ -193,7 +193,7 @@ bool ISimpleGameListView::input(InputConfig* config, Input input) if (getCursor()->getType() == FOLDER && foldersOnTop == true) foldersOnTop = !getCursor()->viewHasOnlyFolders(); - if (CollectionSystemManager::get()->getIsCustomCollection(mRoot->getSystem())) + if (mRoot->getSystem()->isCustomCollection()) favoritesSorting = Settings::getInstance()->getBool("FavFirstCustom"); else favoritesSorting = Settings::getInstance()->getBool("FavoritesFirst");