MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / setGuiSkip

Method setGuiSkip

gui/qt/settings.cpp:767–774  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

765}
766
767void MainWindow::setGuiSkip(int value) {
768 m_config->setValue(SETTING_SCREEN_FRAMESKIP, value);
769 ui->guiSkip->blockSignals(true);
770 ui->guiSkip->setValue(value);
771 ui->guiSkip->blockSignals(false);
772 ui->apngSkipDisplay->setText(QString::number((ui->guiSkip->value() + 1) * (ui->apngSkip->value() + 1) - 1));
773 emit setLcdFrameskip(value);
774}
775
776void MainWindow::setStatusInterval(int value) {
777 m_config->setValue(SETTING_STATUS_INTERVAL, value);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected