mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix controls not saving on non-SDL builds
This commit is contained in:
parent
da50382cd4
commit
4cd249e632
1
CHANGES
1
CHANGES
|
@ -155,6 +155,7 @@ Bugfixes:
|
|||
- Qt: Fix window icon being stretched
|
||||
- Qt: Fix initial window size (fixes mgba.io/i/766)
|
||||
- Qt: Fix data directory path
|
||||
- Qt: Fix controls not saving on non-SDL builds
|
||||
Misc:
|
||||
- Qt: Add language selector
|
||||
- GBA Timer: Improve accuracy of timers
|
||||
|
|
|
@ -123,8 +123,8 @@ void InputController::saveConfiguration() {
|
|||
if (m_playerAttached) {
|
||||
mSDLPlayerSaveConfig(&m_sdlPlayer, m_config->input());
|
||||
}
|
||||
m_config->write();
|
||||
#endif
|
||||
m_config->write();
|
||||
}
|
||||
|
||||
void InputController::saveConfiguration(uint32_t type) {
|
||||
|
|
Loading…
Reference in New Issue