fix Return/KP_Return issues for Ryan's notebook

This commit is contained in:
Chris Danford
2003-06-25 06:44:15 +00:00
parent 9fe82671a6
commit 65f59f1e5a
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -248,6 +248,7 @@ void ScreenMapControllers::Input( const DeviceInput& DeviceI, const InputEventTy
} }
break; break;
case SDLK_RETURN: /* Change the selection. */ case SDLK_RETURN: /* Change the selection. */
case SDLK_KP_ENTER:
m_bWaitingForPress = true; m_bWaitingForPress = true;
break; break;
} }
+1
View File
@@ -108,6 +108,7 @@ void ScreenTextEntry::Input( const DeviceInput& DeviceI, const InputEventType ty
MenuStart(PLAYER_1); MenuStart(PLAYER_1);
break; break;
case SDLK_RETURN: case SDLK_RETURN:
case SDLK_KP_ENTER:
MenuStart(PLAYER_1); MenuStart(PLAYER_1);
break; break;
case SDLK_BACKSPACE: case SDLK_BACKSPACE: