Qt: Show error message if file failed to load

This commit is contained in:
Vicki Pfau 2019-06-26 15:43:58 -07:00
parent a7ac0bbacc
commit 761536b06f
2 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ Other fixes:
- mGUI: Fix crash if last loaded ROM directory disappears (fixes mgba.io/i/1466)
Misc:
- Qt: Make mute menu option also toggle fast-forward mute (fixes mgba.io/i/1424)
- Qt: Show error message if file failed to load
0.7.2: (2019-05-25)
Emulation fixes:

View File

@ -1866,6 +1866,7 @@ void Window::updateFrame() {
void Window::setController(CoreController* controller, const QString& fname) {
if (!controller) {
gameFailed();
return;
}