Fixed an issue where System view videos with a static path set would still display the static image.

This commit is contained in:
Leon Styhre 2022-09-15 17:27:16 +02:00
parent 59494b0a9b
commit 8699bdcbb9

View file

@ -883,7 +883,7 @@ void SystemView::updateGameSelectors()
}
for (auto& video : mSystemElements[cursor].videoComponents) {
if (video->getThemeImageTypes().size() == 0)
if (video->hasStaticVideo() || video->getThemeImageTypes().size() == 0)
continue;
GameSelectorComponent* gameSelector {nullptr};
if (multipleSelectors) {