changeset 4387:0ccad9da9664 draft

(svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT.
author Darkvater <Darkvater@openttd.org>
date Sat, 26 Aug 2006 14:41:16 +0000
parents a99845945cfb
children 4ad157504539
files variables.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/variables.h
+++ b/variables.h
@@ -283,7 +283,7 @@
 
 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;