diff --git a/Laptop/BobbyRGuns.cpp b/Laptop/BobbyRGuns.cpp index bec848285..daba1cfe3 100644 --- a/Laptop/BobbyRGuns.cpp +++ b/Laptop/BobbyRGuns.cpp @@ -3749,7 +3749,7 @@ void HandleBobbyRGunsKeyBoardInput() fCtrl = _KeyDown( CTRL ); fAlt = _KeyDown( ALT ); - while (DequeueSpecificEvent(&InputEvent, KEY_DOWN |KEY_REPEAT) == TRUE) + while (DequeueEvent(&InputEvent) == TRUE) { if( InputEvent.usEvent == KEY_DOWN ) { @@ -3931,5 +3931,10 @@ void HandleBobbyRGunsKeyBoardInput() break; } } + else + { + extern void HandleDefaultEvent(InputAtom *Event); + HandleDefaultEvent(&InputEvent); + } } }