| 375 | } |
| 376 | |
| 377 | void MainWindow::setLcdGamma(bool state) { |
| 378 | ui->checkGamma->setChecked(state); |
| 379 | m_config->setValue(SETTING_SCREEN_GAMMA, state); |
| 380 | emu_set_lcd_gamma(state == false ? 0 : 1); |
| 381 | } |
| 382 | |
| 383 | void MainWindow::setLcdResponse(bool state) { |
| 384 | ui->checkResponse->setChecked(state); |
nothing calls this directly
no test coverage detected