| 464 | } |
| 465 | |
| 466 | void EmuThread::startBackgroundControllerPollTimer() |
| 467 | { |
| 468 | if (m_background_controller_polling_timer->isActive()) |
| 469 | return; |
| 470 | |
| 471 | m_background_controller_polling_timer->start( |
| 472 | FullscreenUI::IsInitialized() ? FULLSCREEN_UI_CONTROLLER_POLLING_INTERVAL : BACKGROUND_CONTROLLER_POLLING_INTERVAL); |
| 473 | } |
| 474 | |
| 475 | void EmuThread::stopBackgroundControllerPollTimer() |
| 476 | { |
no test coverage detected