mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix "close" button on Overrides view
This commit is contained in:
parent
5a24012e8a
commit
bea6235c0a
1
CHANGES
1
CHANGES
|
@ -3,6 +3,7 @@ Bugfixes:
|
||||||
- GB MBC: Fix MBC7 when size is incorrectly specified
|
- GB MBC: Fix MBC7 when size is incorrectly specified
|
||||||
- GB Video: Setting LYC=LY during mode 2 should trigger an IRQ
|
- GB Video: Setting LYC=LY during mode 2 should trigger an IRQ
|
||||||
- GBA Cheats: Fix holding onto pointers that may get invalidated
|
- GBA Cheats: Fix holding onto pointers that may get invalidated
|
||||||
|
- Qt: Fix "close" button on Overrides view
|
||||||
Misc:
|
Misc:
|
||||||
- All: Only update version info if needed
|
- All: Only update version info if needed
|
||||||
|
|
||||||
|
|
|
@ -88,6 +88,7 @@ OverrideView::OverrideView(GameController* controller, ConfigController* config,
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
connect(m_ui.buttonBox, SIGNAL(accepted()), this, SLOT(saveOverride()));
|
connect(m_ui.buttonBox, SIGNAL(accepted()), this, SLOT(saveOverride()));
|
||||||
|
connect(m_ui.buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
||||||
|
|
||||||
if (controller->isLoaded()) {
|
if (controller->isLoaded()) {
|
||||||
gameStarted(controller->thread());
|
gameStarted(controller->thread());
|
||||||
|
|
Loading…
Reference in New Issue