Skip to content

Commit

Permalink
Fix video screensaver launch game controls
Browse files Browse the repository at this point in the history
Video screensaver wasn't launching games when the Image screensaver had been set to use custom images, even if not in use.

Introduced in RetroPie#673 .

Reported in https://retropie.org.uk/forum/topic/29291/video-screensaver-black-screen-with-omx-on-and-controls-not-working/
  • Loading branch information
pjft authored Mar 24, 2021
1 parent de09d48 commit a8ccd0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion es-core/src/Window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ bool Window::inputDuringScreensaver(InputConfig* config, Input input)
else if (is_start_input)
{
bool slideshow_custom_images = Settings::getInstance()->getBool("SlideshowScreenSaverCustomImageSource");
if (!slideshow_custom_images)
if (screensaver_type == "random video" || !slideshow_custom_images)
{
mScreenSaver->launchGame();
}
Expand Down

0 comments on commit a8ccd0a

Please sign in to comment.