mirror of https://github.com/mgba-emu/mgba.git
Qt: Remove default autofire mappings
This commit is contained in:
parent
e7226e7649
commit
57c1275890
1
CHANGES
1
CHANGES
|
@ -59,6 +59,7 @@ Misc:
|
|||
- PSP2: Sync files per descriptor
|
||||
- GBA Savedata: Add realistic timing for EEPROM
|
||||
- GBA Video: Optimize mode 0 rendering
|
||||
- Qt: Remove default autofire mappings
|
||||
|
||||
0.4.1: (2016-07-11)
|
||||
Bugfixes:
|
||||
|
|
|
@ -1380,13 +1380,13 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
m_controller->setAutofire(GBA_KEY_A, true);
|
||||
}, [this]() {
|
||||
m_controller->setAutofire(GBA_KEY_A, false);
|
||||
}, QKeySequence("W"), tr("Autofire A"), "autofireA");
|
||||
}, QKeySequence(), tr("Autofire A"), "autofireA");
|
||||
|
||||
m_shortcutController->addFunctions(autofireMenu, [this]() {
|
||||
m_controller->setAutofire(GBA_KEY_B, true);
|
||||
}, [this]() {
|
||||
m_controller->setAutofire(GBA_KEY_B, false);
|
||||
}, QKeySequence("Q"), tr("Autofire B"), "autofireB");
|
||||
}, QKeySequence(), tr("Autofire B"), "autofireB");
|
||||
|
||||
m_shortcutController->addFunctions(autofireMenu, [this]() {
|
||||
m_controller->setAutofire(GBA_KEY_L, true);
|
||||
|
|
Loading…
Reference in New Issue