mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Changed the order of the A, B, X and Y help system buttons.
Also changed the gamelist help text from 'enter' and 'launch' to 'select' for the gamelist view.
This commit is contained in:
parent
fbfb84187a
commit
56c8a43b36
|
@ -438,9 +438,9 @@ std::vector<HelpPrompt> GamelistView::getHelpPrompts()
|
||||||
|
|
||||||
if (mRoot->getSystem()->getThemeFolder() == "custom-collections" && mCursorStack.empty() &&
|
if (mRoot->getSystem()->getThemeFolder() == "custom-collections" && mCursorStack.empty() &&
|
||||||
ViewController::getInstance()->getState().viewing == ViewController::GAMELIST)
|
ViewController::getInstance()->getState().viewing == ViewController::GAMELIST)
|
||||||
prompts.push_back(HelpPrompt("a", "enter"));
|
prompts.push_back(HelpPrompt("a", "select"));
|
||||||
else
|
else
|
||||||
prompts.push_back(HelpPrompt("a", "launch"));
|
prompts.push_back(HelpPrompt("a", "select"));
|
||||||
|
|
||||||
prompts.push_back(HelpPrompt("b", "back"));
|
prompts.push_back(HelpPrompt("b", "back"));
|
||||||
prompts.push_back(HelpPrompt("x", "view media"));
|
prompts.push_back(HelpPrompt("x", "view media"));
|
||||||
|
|
|
@ -680,14 +680,14 @@ void Window::setHelpPrompts(const std::vector<HelpPrompt>& prompts, const HelpSt
|
||||||
static const std::vector<std::string> map = {"up/down/left/right",
|
static const std::vector<std::string> map = {"up/down/left/right",
|
||||||
"up/down",
|
"up/down",
|
||||||
"left/right",
|
"left/right",
|
||||||
"a",
|
|
||||||
"b",
|
|
||||||
"x",
|
|
||||||
"y",
|
|
||||||
"r",
|
|
||||||
"l",
|
|
||||||
"rt",
|
"rt",
|
||||||
"lt",
|
"lt",
|
||||||
|
"r",
|
||||||
|
"l",
|
||||||
|
"y",
|
||||||
|
"x",
|
||||||
|
"b",
|
||||||
|
"a",
|
||||||
"start",
|
"start",
|
||||||
"back"};
|
"back"};
|
||||||
int i = 0;
|
int i = 0;
|
||||||
|
|
Loading…
Reference in a new issue