mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 22:25: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;
|
std::string nameOverride;
|
||||||
bool automaticMode;
|
bool automaticMode;
|
||||||
|
|
||||||
|
ScraperSearchParams()
|
||||||
|
: automaticMode {false}
|
||||||
|
{
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
struct ScraperSearchResult {
|
struct ScraperSearchResult {
|
||||||
|
|
Loading…
Reference in a new issue