LAB: By default skip thumbnail loading for readSaveGameHeader

This changes the convention back to skipping the thumbnail loading
for readSaveGameHeader. querySaveMetaInfos is the only place it
shouldn't be skipped.
This commit is contained in:
David Fioramonti 2018-07-31 04:50:53 -07:00 committed by Eugene Sandulenko
parent bafe22c782
commit 2649c429db
2 changed files with 2 additions and 2 deletions

View file

@ -208,7 +208,7 @@ SaveStateDescriptor LabMetaEngine::querySaveMetaInfos(const char *target, int sl
if (in) {
Lab::SaveGameHeader header;
bool successfulRead = Lab::readSaveGameHeader(in, header);
bool successfulRead = Lab::readSaveGameHeader(in, header, false);
delete in;
if (successfulRead) {