dinput: Fix counting non mapped axis as pov.

This commit is contained in:
Ričardas Barkauskas 2009-10-21 00:12:00 +03:00 committed by Alexandre Julliard
parent e1903dc6e0
commit 258fd75b39
1 changed files with 3 additions and 1 deletions

View File

@ -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)
{