From 7a58659fefe7e007b4cd3d13bed21831e6c27171 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Sat, 26 Aug 2006 14:41:16 +0000 Subject: [PATCH] (svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT. --- variables.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/variables.h b/variables.h index eaf3ce576e..44b3750d9b 100644 --- a/variables.h +++ b/variables.h @@ -283,7 +283,7 @@ VARDEF uint32 _decode_parameters[20]; VARDEF uint32 _pressed_key; // Low 8 bits = ASCII, High 16 bits = keycode VARDEF bool _ctrl_pressed; // Is Ctrl pressed? -VARDEF bool _shift_pressed; // Is Alt pressed? +VARDEF bool _shift_pressed; // Is Shift pressed? VARDEF byte _dirkeys; // 1 = left, 2 = up, 4 = right, 8 = down VARDEF bool _fullscreen;