mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix load recent from archive (fixes #1325)
This commit is contained in:
parent
307e05b593
commit
7233a28990
1
CHANGES
1
CHANGES
|
@ -1,6 +1,7 @@
|
|||
0.7.2: (Future)
|
||||
Bugfixes:
|
||||
- Qt: More app metadata fixes
|
||||
- Qt: Fix load recent from archive (fixes mgba.io/i/1325)
|
||||
Misc:
|
||||
- Qt: Add missing HEVC NVENC option (fixes mgba.io/i/1323)
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue