mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed an issue where 'No games found' results could be accepted when multi-scraping.
This commit is contained in:
parent
64397bc6f0
commit
1b19ab99b1
|
@ -542,7 +542,7 @@ void GuiScraperSearch::updateInfoPane()
|
|||
bool GuiScraperSearch::input(InputConfig* config, Input input)
|
||||
{
|
||||
if (config->isMappedTo("a", input) && input.value != 0) {
|
||||
if (mBlockAccept)
|
||||
if (mBlockAccept || mScraperResults.empty())
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue