mirror of
https://github.com/stenzek/duckstation.git
synced 2025-06-07 03:55:33 +00:00
AnalogController: Send full analog response for reads in config mode
This commit is contained in:
parent
e4820bcbc1
commit
3f709d97b6
@ -332,8 +332,8 @@ bool AnalogController::Transfer(const u8 data_in, u8* data_out)
|
||||
}
|
||||
|
||||
*data_out = Truncate8(m_button_state >> 8);
|
||||
m_state = m_analog_mode ? State::GetStateRightAxisX : State::Idle;
|
||||
ack = m_analog_mode;
|
||||
m_state = (m_analog_mode || m_configuration_mode) ? State::GetStateRightAxisX : State::Idle;
|
||||
ack = m_analog_mode || m_configuration_mode;
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user