all repos — mgba @ e8383209c52406356e43b41c4c5080318879c22e

mGBA Game Boy Advance Emulator

Qt: Make mute menu option also toggle fast-forward mute (fixes #1424)
Vicki Pfau vi@endrift.com
Wed, 29 May 2019 09:33:15 -0700
commit

e8383209c52406356e43b41c4c5080318879c22e

parent

6b41d91e69463ceab0293e8272413884be961eae

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -43,6 +43,7 @@ - Qt: Increase maximum magnifications and scaling

- Qt: Add native FPS button to settings view - Qt: Improve sync code - Switch: Dynamic display resizing + - Qt: Make mute menu option also toggle fast-forward mute (fixes mgba.io/i/1424) 0.7.2: (2019-05-25) Emulation fixes:
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -1375,6 +1375,7 @@

ConfigOption* mute = m_config->addOption("mute"); mute->addBoolean(tr("Mute"), &m_actions, "av"); mute->connect([this](const QVariant& value) { + m_config->setOption("fastForwardMute", static_cast<bool>(value.toInt())); reloadConfig(); }, this); m_config->updateOption("mute");