mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix applying savetype-only overrides
This commit is contained in:
parent
135d1a10ca
commit
31ef54ca9d
1
CHANGES
1
CHANGES
|
@ -2,6 +2,7 @@
|
|||
Other fixes:
|
||||
- Core: Fix memory leak in opening games from the library
|
||||
- Qt: Fix infrequent deadlock when using sync to video
|
||||
- Qt: Fix applying savetype-only overrides
|
||||
|
||||
0.9.1: (2021-04-18)
|
||||
Emulation fixes:
|
||||
|
|
|
@ -146,6 +146,9 @@ void OverrideView::updateOverrides() {
|
|||
gba->override.vbaBugCompat = false;
|
||||
gba->vbaBugCompatSet = false;
|
||||
|
||||
if (gba->override.savetype != SAVEDATA_AUTODETECT) {
|
||||
hasOverride = true;
|
||||
}
|
||||
if (!m_ui.hwAutodetect->isChecked()) {
|
||||
hasOverride = true;
|
||||
gba->override.hardware = HW_NONE;
|
||||
|
|
Loading…
Reference in New Issue