Fixed an issue where gamelist filters were not applied correctly.

This commit is contained in:
Leon Styhre 2020-10-27 18:55:27 +01:00
parent 15a9f73375
commit 9ad230bc3f

View file

@ -125,7 +125,7 @@ bool ISimpleGameListView::input(InputConfig* config, Input input)
ViewController::get()->resetMovingCamera(); ViewController::get()->resetMovingCamera();
if (mCursorStack.size()) { if (mCursorStack.size()) {
NavigationSounds::getInstance()->playThemeNavigationSound(BACKSOUND); NavigationSounds::getInstance()->playThemeNavigationSound(BACKSOUND);
populateList(mCursorStack.top()->getParent()->getChildren()); populateList(mCursorStack.top()->getParent()->getChildrenListToDisplay());
setCursor(mCursorStack.top()); setCursor(mCursorStack.top());
mCursorStack.pop(); mCursorStack.pop();
} }