mirror of https://github.com/mgba-emu/mgba.git
Qt: Add fast forward speed caps up to 10x
This commit is contained in:
parent
ab028c9d80
commit
4ec19aac71
|
@ -742,7 +742,7 @@ void Window::setupMenu(QMenuBar* menubar) {
|
|||
ffspeed->addValue(tr("Unbounded"), -1.0f, ffspeedMenu);
|
||||
ffspeed->setValue(QVariant(-1.0f));
|
||||
ffspeedMenu->addSeparator();
|
||||
for (i = 2; i < 6; ++i) {
|
||||
for (i = 2; i < 11; ++i) {
|
||||
ffspeed->addValue(tr("%0x").arg(i), i, ffspeedMenu);
|
||||
}
|
||||
m_config->updateOption("fastForwardRatio");
|
||||
|
|
Loading…
Reference in New Issue