Qt: Fix load recent from archive (fixes #1325)

This commit is contained in:
Vicki Pfau 2019-02-28 19:23:35 -08:00
parent 16688a5971
commit eafb1ca06b
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Bugfixes:
- GBA: Reset now reloads multiboot ROMs
- GBA BIOS: Fix multiboot entry point (fixes Magic Floor)
- Qt: More app metadata fixes
- Qt: Fix load recent from archive (fixes mgba.io/i/1325)
Misc:
- GBA Savedata: EEPROM performance fixes
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash

View File

@ -49,7 +49,7 @@ CoreController* CoreManager::loadGame(const QString& path) {
vf = vfclone;
}
dir->close(dir);
loadGame(vf, fname, base);
return loadGame(vf, fname, base);
} else {
LOG(QT, ERROR) << tr("Failed to open game file: %1").arg(path);
}