mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 15:45:38 +00:00
Fixed an issue where System view videos with a static path set would still display the static image.
This commit is contained in:
parent
59494b0a9b
commit
8699bdcbb9
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue