libretro: Set both strong and weak rumble motors
This commit is contained in:
parent
d568c458b8
commit
0682b31044
|
@ -761,13 +761,10 @@ void LibretroHostInterface::UpdateControllersAnalogController(u32 index)
|
||||||
|
|
||||||
if (m_rumble_interface_valid)
|
if (m_rumble_interface_valid)
|
||||||
{
|
{
|
||||||
const u32 motor_count = controller->GetVibrationMotorCount();
|
const u16 strong = static_cast<u16>(static_cast<u32>(controller->GetVibrationMotorStrength(0) * 65565.0f));
|
||||||
for (u32 i = 0; i < motor_count; i++)
|
const u16 weak = static_cast<u16>(static_cast<u32>(controller->GetVibrationMotorStrength(1) * 65565.0f));
|
||||||
{
|
m_rumble_interface.set_rumble_state(index, RETRO_RUMBLE_STRONG, strong);
|
||||||
const float strength = controller->GetVibrationMotorStrength(i);
|
m_rumble_interface.set_rumble_state(index, RETRO_RUMBLE_WEAK, weak);
|
||||||
m_rumble_interface.set_rumble_state(index, RETRO_RUMBLE_STRONG,
|
|
||||||
static_cast<u16>(static_cast<u32>(strength * 65565.0f)));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue