mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-29 09:35:39 +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)
|
bool GuiScraperSearch::input(InputConfig* config, Input input)
|
||||||
{
|
{
|
||||||
if (config->isMappedTo("a", input) && input.value != 0) {
|
if (config->isMappedTo("a", input) && input.value != 0) {
|
||||||
if (mBlockAccept)
|
if (mBlockAccept || mScraperResults.empty())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue