From 25374dee58942b20a38f446074667e7dbb297b5a Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Fri, 3 Feb 2012 21:46:55 +0000 Subject: Fix chat macros when vanilla_keyboard_mapping is turned off. Subversion-branch: /trunk/chocolate-doom Subversion-revision: 2493 --- src/hu_stuff.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/hu_stuff.c') diff --git a/src/hu_stuff.c b/src/hu_stuff.c index afe3974c..8547f34a 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -649,11 +649,10 @@ boolean HU_Responder(event_t *ev) } else { - c = ev->data2; // send a macro if (altdown) { - c = c - '0'; + c = ev->data1 - '0'; if (c > 9) return false; // fprintf(stderr, "got here\n"); @@ -675,6 +674,8 @@ boolean HU_Responder(event_t *ev) } else { + c = ev->data2; + if (vanilla_keyboard_mapping) { if (shiftdown || (c >= 'a' && c <= 'z')) -- cgit v1.2.3