aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Screens/UScreenStatDetail.pas
diff options
context:
space:
mode:
authorjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-09-05 12:35:19 +0000
committerjaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-09-05 12:35:19 +0000
commit3043d3db91c3a541881aa951bbd4f8ccb5e3ce40 (patch)
treee15bfb38ab7020e2f16581dcb822cfd3bbb23f49 /Game/Code/Screens/UScreenStatDetail.pas
parent5f4bffbda4942287ddef7ee02fae736901ede1dc (diff)
downloadusdx-3043d3db91c3a541881aa951bbd4f8ccb5e3ce40.tar.gz
usdx-3043d3db91c3a541881aa951bbd4f8ccb5e3ce40.tar.xz
usdx-3043d3db91c3a541881aa951bbd4f8ccb5e3ce40.zip
modified ParseInput so Backspace will perform same function as ESC in most screens ( Except where text input is required, and backspace is used for text input )
This has been done, so that when used with Windows Media Center IR Remotes ( needs SDL 1.2 dll at runtime ) users can navigate throug the game without sitting in front of the PC keyboard. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@370 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Screens/UScreenStatDetail.pas4
1 files changed, 3 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenStatDetail.pas b/Game/Code/Screens/UScreenStatDetail.pas
index 1461a9da..9dc6c525 100644
--- a/Game/Code/Screens/UScreenStatDetail.pas
+++ b/Game/Code/Screens/UScreenStatDetail.pas
@@ -47,7 +47,9 @@ begin
begin
Result := false;
end;
- SDLK_ESCAPE:
+
+ SDLK_ESCAPE,
+ SDLK_BACKSPACE :
begin
Music.PlayBack;
FadeTo(@ScreenStatMain);