mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed an uninitialized bool in the scraper.
This commit is contained in:
parent
7196ed9088
commit
90851befc5
|
@ -39,6 +39,11 @@ struct ScraperSearchParams {
|
|||
|
||||
std::string nameOverride;
|
||||
bool automaticMode;
|
||||
|
||||
ScraperSearchParams()
|
||||
: automaticMode {false}
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
struct ScraperSearchResult {
|
||||
|
|
Loading…
Reference in a new issue