mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Fixed a typo in a previous commit.
This commit is contained in:
parent
ea55efb523
commit
61827b4de1
|
@ -83,7 +83,7 @@ GuiScraperMulti::GuiScraperMulti(Window* window,
|
|||
// semi-automatic mode and there are less than 2 search results.
|
||||
if (!mSearchComp->getAcceptedResult() &&
|
||||
!(mSearchComp->getSearchType() == GuiScraperSearch::ACCEPT_SINGLE_MATCHES &&
|
||||
mSearchComp->getScraperResultSize() < 2)) {
|
||||
mSearchComp->getScraperResultsSize() < 2)) {
|
||||
mSearchComp->openInputScreen(mSearchQueue.front());
|
||||
mGrid.resetCursor();
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ public:
|
|||
void search(const ScraperSearchParams& params);
|
||||
void openInputScreen(ScraperSearchParams& from);
|
||||
void stop();
|
||||
int getScraperResultSize() { return static_cast<int>(mScraperResults.size()); }
|
||||
int getScraperResultsSize() { return static_cast<int>(mScraperResults.size()); }
|
||||
bool getAcceptedResult() { return mAcceptedResult; }
|
||||
SearchType getSearchType() const { return mSearchType; }
|
||||
bool getSavedNewMedia()
|
||||
|
|
Loading…
Reference in a new issue