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

This commit is contained in:
Vicki Pfau 2019-02-28 19:23:35 -08:00
parent 307e05b593
commit 7233a28990
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
0.7.2: (Future) 0.7.2: (Future)
Bugfixes: Bugfixes:
- Qt: More app metadata fixes - Qt: More app metadata fixes
- Qt: Fix load recent from archive (fixes mgba.io/i/1325)
Misc: Misc:
- Qt: Add missing HEVC NVENC option (fixes mgba.io/i/1323) - Qt: Add missing HEVC NVENC option (fixes mgba.io/i/1323)

View File

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