AnalogController: Treat rumble as binary on/off

Fixes vibration in Final Fantasy 8.
This commit is contained in:
Connor McLaughlin 2020-07-10 20:15:45 +10:00
parent d6ec1fd84e
commit 604ff20b0d
1 changed files with 2 additions and 2 deletions

View File

@ -258,7 +258,7 @@ bool AnalogController::Transfer(const u8 data_in, u8* data_out)
case State::GetStateButtonsLSB:
{
if (m_rumble_unlocked)
SetMotorState(1, data_in != 0 ? 255 : 0);
SetMotorState(1, ((data_in & 0xC0) == 0x40) ? 255 : 0);
*data_out = Truncate8(m_button_state);
m_state = State::GetStateButtonsMSB;
@ -269,7 +269,7 @@ bool AnalogController::Transfer(const u8 data_in, u8* data_out)
case State::GetStateButtonsMSB:
{
if (m_rumble_unlocked)
SetMotorState(0, data_in);
SetMotorState(0, ((data_in & 0x01) != 0) ? 255 : 0);
*data_out = Truncate8(m_button_state >> 8);
m_state = m_analog_mode ? State::GetStateRightAxisX : State::Idle;