| 368 | } |
| 369 | |
| 370 | void MainWindow::setLcdDma(bool state) { |
| 371 | ui->checkDma->setChecked(state); |
| 372 | ui->checkGamma->setEnabled(state); |
| 373 | m_config->setValue(SETTING_SCREEN_DMA, state); |
| 374 | emu_set_lcd_dma(state == false ? 0 : 1); |
| 375 | } |
| 376 | |
| 377 | void MainWindow::setLcdGamma(bool state) { |
| 378 | ui->checkGamma->setChecked(state); |
nothing calls this directly
no test coverage detected