mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix load recent from archive (fixes #1325)
This commit is contained in:
parent
16688a5971
commit
eafb1ca06b
1
CHANGES
1
CHANGES
|
@ -8,6 +8,7 @@ Bugfixes:
|
||||||
- GBA: Reset now reloads multiboot ROMs
|
- GBA: Reset now reloads multiboot ROMs
|
||||||
- GBA BIOS: Fix multiboot entry point (fixes Magic Floor)
|
- GBA BIOS: Fix multiboot entry point (fixes Magic Floor)
|
||||||
- Qt: More app metadata fixes
|
- Qt: More app metadata fixes
|
||||||
|
- Qt: Fix load recent from archive (fixes mgba.io/i/1325)
|
||||||
Misc:
|
Misc:
|
||||||
- GBA Savedata: EEPROM performance fixes
|
- GBA Savedata: EEPROM performance fixes
|
||||||
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash
|
- GBA Savedata: Automatically map 1Mbit Flash files as 1Mbit Flash
|
||||||
|
|
|
@ -49,7 +49,7 @@ CoreController* CoreManager::loadGame(const QString& path) {
|
||||||
vf = vfclone;
|
vf = vfclone;
|
||||||
}
|
}
|
||||||
dir->close(dir);
|
dir->close(dir);
|
||||||
loadGame(vf, fname, base);
|
return loadGame(vf, fname, base);
|
||||||
} else {
|
} else {
|
||||||
LOG(QT, ERROR) << tr("Failed to open game file: %1").arg(path);
|
LOG(QT, ERROR) << tr("Failed to open game file: %1").arg(path);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue