mirror of https://github.com/mgba-emu/mgba.git
Qt: Show error message if file failed to load
This commit is contained in:
parent
a7ac0bbacc
commit
761536b06f
1
CHANGES
1
CHANGES
|
@ -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:
|
||||
|
|
|
@ -1866,6 +1866,7 @@ void Window::updateFrame() {
|
|||
|
||||
void Window::setController(CoreController* controller, const QString& fname) {
|
||||
if (!controller) {
|
||||
gameFailed();
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue