Merge pull request #61 from chrisps/canary_experimental

performance improvements, kernel fixes, cpu accuracy improvements
This commit is contained in:
Radosław Gliński
2022-08-21 09:31:09 +02:00
committed by GitHub
70 changed files with 1744 additions and 541 deletions

View File

@@ -979,7 +979,12 @@ void EmulatorWindow::ToggleDisplayConfigDialog() {
}
void EmulatorWindow::ToggleControllerVibration() {
emulator()->input_system()->ToggleVibration();
auto input_sys = emulator()->input_system();
if (input_sys) {
auto input_lock = input_sys->lock();
input_sys->ToggleVibration();
}
}
void EmulatorWindow::ShowCompatibility() {