From e587b3a012521448cb5e16472744b91d9f7b11ea Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 16 Nov 2002 08:45:40 +0000 Subject: [PATCH] fix enum mismatch --- stepmania/src/InputMapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/InputMapper.cpp b/stepmania/src/InputMapper.cpp index 8761472341..ddb3290620 100644 --- a/stepmania/src/InputMapper.cpp +++ b/stepmania/src/InputMapper.cpp @@ -219,7 +219,7 @@ void InputMapper::UpdateTempDItoGI() bool InputMapper::DeviceToGame( DeviceInput DeviceI, GameInput& GameI ) // return true if there is a mapping from device to pad { GameI = m_tempDItoGI[DeviceI.device][DeviceI.button]; - return GameI.controller != PLAYER_INVALID; + return GameI.controller != GAME_CONTROLLER_INVALID; } bool InputMapper::GameToDevice( GameInput GameI, int iSoltNum, DeviceInput& DeviceI ) // return true if there is a mapping from pad to device