all repos — mgba @ eafb1ca06be6adcaa737cabf52eeef41e1b0d7d4

mGBA Game Boy Advance Emulator

Qt: Fix load recent from archive (fixes #1325)
Vicki Pfau vi@endrift.com
Thu, 28 Feb 2019 19:23:35 -0800
commit

eafb1ca06be6adcaa737cabf52eeef41e1b0d7d4

parent

16688a59717d43518dfa7f9c2c10fdde148e1a70

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -8,6 +8,7 @@ - GBA: All IRQs have 7 cycle delay (fixes mgba.io/i/539, mgba.io/i/1208)

- 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
M src/platform/qt/CoreManager.cppsrc/platform/qt/CoreManager.cpp

@@ -49,7 +49,7 @@ vf->close(vf);

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); }