early-access version 3299

This commit is contained in:
pineappleEA
2023-01-08 00:07:19 +01:00
parent f8e172869d
commit 6024631e28
9 changed files with 76 additions and 27 deletions

View File

@@ -1583,16 +1583,6 @@ AnalogSticks EmulatedController::GetSticks() const {
return {};
}
// Some drivers like stick from buttons need constant refreshing
for (auto& device : stick_devices) {
if (!device) {
continue;
}
lock.unlock();
device->SoftUpdate();
lock.lock();
}
return controller.analog_stick_state;
}