mirror of https://github.com/mgba-emu/mgba.git
Qt: Show error message if file failed to load
This commit is contained in:
parent
48162e75e7
commit
4731bae9e0
1
CHANGES
1
CHANGES
|
@ -67,6 +67,7 @@ Misc:
|
|||
- Core: Create game-related paths if they don't exist (fixes mgba.io/i/1446)
|
||||
- Qt: Add option to pause on minimizing window (closes mgba.io/i/1379)
|
||||
- Switch: Support file associations
|
||||
- Qt: Show error message if file failed to load
|
||||
|
||||
0.7.2: (2019-05-25)
|
||||
Emulation fixes:
|
||||
|
|
|
@ -1762,6 +1762,7 @@ void Window::updateFrame() {
|
|||
|
||||
void Window::setController(CoreController* controller, const QString& fname) {
|
||||
if (!controller) {
|
||||
gameFailed();
|
||||
return;
|
||||
}
|
||||
if (m_pendingClose) {
|
||||
|
|
Loading…
Reference in New Issue