mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-25 23:55:38 +00:00
Fixed an issue where the accept button would be shown in the scraper help system when it shouldn't.
This commit is contained in:
parent
077a0e0e2c
commit
9eb1cfd66a
|
@ -769,7 +769,8 @@ std::vector<HelpPrompt> GuiScraperSearch::getHelpPrompts()
|
|||
prompts.push_back(HelpPrompt("y", "refine search"));
|
||||
if (mScrapeCount > 1)
|
||||
prompts.push_back(HelpPrompt("x", "skip"));
|
||||
if (mFoundGame)
|
||||
if (mFoundGame && (mRefinedSearch || mSearchType != ACCEPT_SINGLE_MATCHES ||
|
||||
(mSearchType == ACCEPT_SINGLE_MATCHES && mScraperResults.size() > 1)))
|
||||
prompts.push_back(HelpPrompt("a", "accept result"));
|
||||
|
||||
return prompts;
|
||||
|
|
Loading…
Reference in a new issue