mirror of https://github.com/mgba-emu/mgba.git
Merge branch 'master' into translations
This commit is contained in:
commit
938f8fd600
1
CHANGES
1
CHANGES
|
@ -14,6 +14,7 @@ Misc:
|
|||
- GB Serialize: Add missing savestate support for MBC6 and NT (newer)
|
||||
- GBA: Improve detection of valid ELF ROMs
|
||||
- Qt: Include wayland QPA in AppImage (fixes mgba.io/i/2796)
|
||||
- Qt: Stop eating boolean action key events (fixes mgba.io/i/2636)
|
||||
|
||||
0.10.1: (2023-01-10)
|
||||
Emulation fixes:
|
||||
|
|
|
@ -160,7 +160,6 @@ bool ShortcutController::eventFilter(QObject* obj, QEvent* event) {
|
|||
Action::BooleanFunction fn = item.value()->action()->booleanAction();
|
||||
fn(event->type() == QEvent::KeyPress);
|
||||
event->accept();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (event->type() == GamepadButtonEvent::Down()) {
|
||||
|
|
|
@ -1692,7 +1692,7 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
if (m_controller) {
|
||||
mCheatPressButton(m_controller->cheatDevice(), held);
|
||||
}
|
||||
}, "tools", QKeySequence(Qt::Key_Apostrophe));
|
||||
}, "tools");
|
||||
|
||||
m_actions.addHiddenMenu(tr("Autofire"), "autofire");
|
||||
m_actions.addHeldAction(tr("Autofire A"), "autofireA", [this](bool held) {
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue