| 741 | } |
| 742 | |
| 743 | void MainWindow::setLcdUpscale(int value) { |
| 744 | m_config->setValue(SETTING_SCREEN_UPSCALE, value); |
| 745 | ui->upscaleLCD->setCurrentIndex(value); |
| 746 | ui->lcd->setUpscaleMethod(value); |
| 747 | } |
| 748 | |
| 749 | void MainWindow::setLcdFullscreen(int value) { |
| 750 | m_config->setValue(SETTING_SCREEN_FULLSCREEN, value); |
nothing calls this directly
no test coverage detected