mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 00:59:44 -06:00
[Android] Fix joysticks only capable of right/down movements. Also make it capable of using onscreen joystick even if controller 1 is bound.
This commit is contained in:
@ -140,7 +140,7 @@ namespace ButtonManager
|
||||
auto it = m_controllers.begin();
|
||||
if (it == m_controllers.end())
|
||||
return value;
|
||||
return it->second->AxisValue(padID, axis);
|
||||
return value != 0.0f ? value : it->second->AxisValue(padID, axis);
|
||||
}
|
||||
void TouchEvent(int padID, ButtonType button, int action)
|
||||
{
|
||||
|
Reference in New Issue
Block a user