diff options
Diffstat (limited to 'Game/Code/Screens/UScreenPopup.pas')
-rw-r--r-- | Game/Code/Screens/UScreenPopup.pas | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/Game/Code/Screens/UScreenPopup.pas b/Game/Code/Screens/UScreenPopup.pas index cb524a72..c4541050 100644 --- a/Game/Code/Screens/UScreenPopup.pas +++ b/Game/Code/Screens/UScreenPopup.pas @@ -48,13 +48,17 @@ begin Result := true;
If (PressedDown) Then
begin // Key Down
-
- case PressedKey of
- SDLK_Q:
+ // check normal keys
+ case WideUpperCase(CharCode)[1] of
+ 'Q': begin
Result := false;
+ Exit;
end;
-
+ end;
+ + // check special keys + case PressedKey of
SDLK_ESCAPE,
SDLK_BACKSPACE :
begin
|