diff --git a/src/duckstation-libretro/libretro_host_interface.cpp b/src/duckstation-libretro/libretro_host_interface.cpp index 93b9a29b9..50fb53ef0 100644 --- a/src/duckstation-libretro/libretro_host_interface.cpp +++ b/src/duckstation-libretro/libretro_host_interface.cpp @@ -838,8 +838,8 @@ void LibretroHostInterface::UpdateControllersAnalogController(u32 index) if (m_rumble_interface_valid) { - const u16 strong = static_cast(static_cast(controller->GetVibrationMotorStrength(0) * 65565.0f)); - const u16 weak = static_cast(static_cast(controller->GetVibrationMotorStrength(1) * 65565.0f)); + const u16 strong = static_cast(static_cast(controller->GetVibrationMotorStrength(0) * 65535.0f)); + const u16 weak = static_cast(static_cast(controller->GetVibrationMotorStrength(1) * 65535.0f)); m_rumble_interface.set_rumble_state(index, RETRO_RUMBLE_STRONG, strong); m_rumble_interface.set_rumble_state(index, RETRO_RUMBLE_WEAK, weak); }