From d5bb8a3ada36379f5dea63d87cf66d9d3c4c98a8 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Thu, 9 Jan 2003 07:51:49 +0000 Subject: [PATCH] Fixed silly joystick axis bug. --- stepmania/src/RageInput.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stepmania/src/RageInput.cpp b/stepmania/src/RageInput.cpp index 2b89fde1e0..d61dd0fb9d 100644 --- a/stepmania/src/RageInput.cpp +++ b/stepmania/src/RageInput.cpp @@ -416,8 +416,7 @@ void RageInput::Update( float fDeltaTime ) for( int axis=0; axisTrace( "val = %d", val ); - if( val < -16000 ) + if( val < -16000 ) { JoystickButton b = (JoystickButton)(JOY_LEFT+2*axis); m_joyState[joy].button[b] = true;