Changed the button to start the screensaver from 'Back' to 'X'.

This commit is contained in:
Leon Styhre 2022-12-05 21:21:48 +01:00
parent b9e6cdd9da
commit fbfb84187a

View file

@ -128,7 +128,7 @@ bool SystemView::input(InputConfig* config, Input input)
return true;
}
if (config->isMappedTo("back", input) &&
if (config->isMappedTo("x", input) &&
Settings::getInstance()->getBool("ScreensaverControls")) {
if (!mWindow->isScreensaverActive()) {
ViewController::getInstance()->stopScrolling();
@ -218,7 +218,7 @@ std::vector<HelpPrompt> SystemView::getHelpPrompts()
prompts.push_back(HelpPrompt("thumbstickclick", "random"));
if (Settings::getInstance()->getBool("ScreensaverControls"))
prompts.push_back(HelpPrompt("back", "screensaver"));
prompts.push_back(HelpPrompt("x", "screensaver"));
return prompts;
}