summaryrefslogtreecommitdiff
path: root/textscreen/txt_main.c
diff options
context:
space:
mode:
authorSimon Howard2006-05-26 19:15:05 +0000
committerSimon Howard2006-05-26 19:15:05 +0000
commit2ceb004be6a790799cef22336727fba5fc5e0666 (patch)
treeaf386f2c42780e09705573e7d41bfbdf21436c13 /textscreen/txt_main.c
parent4ec7c7b066c4754b8ef8b01397111f6177b0d9b2 (diff)
downloadchocolate-doom-2ceb004be6a790799cef22336727fba5fc5e0666.tar.gz
chocolate-doom-2ceb004be6a790799cef22336727fba5fc5e0666.tar.bz2
chocolate-doom-2ceb004be6a790799cef22336727fba5fc5e0666.zip
Add key description for spacebar.
Subversion-branch: /trunk/chocolate-doom Subversion-revision: 533
Diffstat (limited to 'textscreen/txt_main.c')
-rw-r--r--textscreen/txt_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/textscreen/txt_main.c b/textscreen/txt_main.c
index 92c9df2d..ad766c61 100644
--- a/textscreen/txt_main.c
+++ b/textscreen/txt_main.c
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: txt_main.c 519 2006-05-23 22:51:09Z fraggle $
+// $Id: txt_main.c 533 2006-05-26 19:15:05Z fraggle $
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005 Simon Howard
@@ -302,6 +302,7 @@ static char *SpecialKeyName(int key)
{
switch (key)
{
+ case ' ': return "SPACE";
case KEY_RIGHTARROW: return "RIGHT";
case KEY_LEFTARROW: return "LEFT";
case KEY_UPARROW: return "UP";