Fixed an issue where the grouped custom collections system could get the wrong viewstyle set.

This commit is contained in:
Leon Styhre 2022-12-21 20:27:36 +01:00
parent 1c83c762a8
commit 10b971db5b

View file

@ -779,7 +779,8 @@ std::shared_ptr<GamelistView> ViewController::getGamelistView(SystemData* system
case BASIC: {
}
default: {
mState.viewstyle = BASIC;
if (!system->isGroupedCustomCollection())
mState.viewstyle = BASIC;
break;
}
}