dinput: Fix counting non mapped axis as pov.
This commit is contained in:
parent
e1903dc6e0
commit
258fd75b39
|
@ -549,7 +549,9 @@ HRESULT setup_dinput_options(JoystickGenericImpl *This, const int *default_axis_
|
|||
{
|
||||
This->axis_map[i] = default_axis_map[i];
|
||||
tokens = default_axis_map[i];
|
||||
if (tokens >= 0 && tokens < 8)
|
||||
if (tokens < 0)
|
||||
continue;
|
||||
if (tokens < 8)
|
||||
axis++;
|
||||
else if (tokens < 15)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue