[Qt] Properly update HID service

This commit is contained in:
wheremyfoodat 2023-10-30 20:53:41 +02:00
parent 9bbaab7871
commit b0261234a6
2 changed files with 6 additions and 0 deletions

View file

@ -91,6 +91,10 @@ void MainWindow::emuThreadMainLoop() {
}
emu->runFrame();
if (emu->romType != ROMType::None) {
emu->getServiceManager().getHID().updateInputs(emu->getTicks());
}
swapEmuBuffer();
}