summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2007-02-07 13:04:46 +0000
committerSimon Howard2007-02-07 13:04:46 +0000
commita653fb6e0cfab8b5bbe71ae7652e1a9af810b065 (patch)
tree96c9684b867cf682a390c409bc395cb1f1124de0 /src
parent16447cf340d51ef54d6780a28ebe6192cf2d1537 (diff)
downloadchocolate-doom-a653fb6e0cfab8b5bbe71ae7652e1a9af810b065.tar.gz
chocolate-doom-a653fb6e0cfab8b5bbe71ae7652e1a9af810b065.tar.bz2
chocolate-doom-a653fb6e0cfab8b5bbe71ae7652e1a9af810b065.zip
Revert previous change: throwing away the key state seems to be the Doom
1.9 behavior. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 832
Diffstat (limited to 'src')
-rw-r--r--src/g_game.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/g_game.c b/src/g_game.c
index 87aae640..3a4cba02 100644
--- a/src/g_game.c
+++ b/src/g_game.c
@@ -203,7 +203,6 @@ fixed_t angleturn[3] = {640, 1280, 320}; // + slow turn
#define NUMKEYS 256
-static boolean gamekeydown_initialised = false;
static boolean gamekeydown[NUMKEYS];
static int turnheld; // for accelerative turning
@@ -645,14 +644,7 @@ void G_DoLoadLevel (void)
// clear cmd building stuff
- // Initialise gamekeydown when the first level is loaded
-
- if (!gamekeydown_initialised)
- {
- memset (gamekeydown, 0, sizeof(gamekeydown));
- gamekeydown_initialised = true;
- }
-
+ memset (gamekeydown, 0, sizeof(gamekeydown));
joyxmove = joyymove = 0;
mousex = mousey = 0;
sendpause = sendsave = paused = false;