1 Commits

Author SHA1 Message Date
Skyth (Asilkan)
37dbb2089f Remove rumble multiplication. 2025-04-04 15:12:25 +03:00

View File

@@ -138,7 +138,7 @@ public:
this->vibration = vibration;
SDL_GameControllerRumble(controller, vibration.wLeftMotorSpeed * 256, vibration.wRightMotorSpeed * 256, VIBRATION_TIMEOUT_MS);
SDL_GameControllerRumble(controller, vibration.wLeftMotorSpeed, vibration.wRightMotorSpeed, VIBRATION_TIMEOUT_MS);
}
void SetLED(const uint8_t r, const uint8_t g, const uint8_t b) const