From 97535fe243312b001ec5b86b922b272d27c7c401 Mon Sep 17 00:00:00 2001 From: Vitaliy Margolen Date: Mon, 28 Apr 2008 07:19:07 -0600 Subject: [PATCH] dinput: Fix typo. --- dlls/dinput/joystick_linux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/dinput/joystick_linux.c b/dlls/dinput/joystick_linux.c index 3343bb229ca..df5d77b6964 100644 --- a/dlls/dinput/joystick_linux.c +++ b/dlls/dinput/joystick_linux.c @@ -363,8 +363,8 @@ static HRESULT setup_dinput_options(JoystickImpl * device) device->axis_map[tokens] = axis++; else { - device->axis_map[tokens ] = 8 + pov; - device->axis_map[tokens++] = 8 + pov++; + device->axis_map[tokens++] = 8 + pov; + device->axis_map[tokens ] = 8 + pov++; } } } -- 2.11.4.GIT