mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Small change to remove a compiler warning on macOS.
This commit is contained in:
parent
6368ae0cc1
commit
08786f2027
|
@ -154,7 +154,7 @@ void Window::input(InputConfig* config, Input input)
|
|||
Settings::getInstance()->getBool("ScreensaverSlideshowCustomImages"))
|
||||
customImageSlideshow = true;
|
||||
|
||||
if (customImageSlideshow || mScreensaver->getCurrentGame() != nullptr &&
|
||||
if ((customImageSlideshow || mScreensaver->getCurrentGame() != nullptr) &&
|
||||
(config->isMappedTo("a", input) ||
|
||||
config->isMappedLike("left", input) || config->isMappedLike("right", input))) {
|
||||
// Left or right browses to the next video or image.
|
||||
|
|
Loading…
Reference in a new issue