From ade7f9784b95b7e2e90df3108cda305342ea0e32 Mon Sep 17 00:00:00 2001 From: Mike Calfin Date: Sun, 28 May 2006 05:03:49 +0000 Subject: [PATCH] fixed down arrow pad light --- stepmania/src/arch/Lights/LightsDriver_Win32Parallel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/arch/Lights/LightsDriver_Win32Parallel.cpp b/stepmania/src/arch/Lights/LightsDriver_Win32Parallel.cpp index 7a75f58ebe..d6a7117510 100644 --- a/stepmania/src/arch/Lights/LightsDriver_Win32Parallel.cpp +++ b/stepmania/src/arch/Lights/LightsDriver_Win32Parallel.cpp @@ -27,7 +27,7 @@ int CabinetLightToIndex( CabinetLight cl ) int GameControllerAndGameButtonToIndex( GameController gc, GameButton gb ) { - CLAMP( (int&)gb, 0, 3 ); + CLAMP( (int&)gb, 0, 4 ); return NUM_CABINET_LIGHTS + gc*4 + gb; }