Qt: Add fast forward speed caps up to 10x

This commit is contained in:
Jeffrey Pfau 2015-06-03 20:55:44 -07:00
parent ab028c9d80
commit 4ec19aac71
1 changed files with 1 additions and 1 deletions

View File

@ -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");