diff options
author | Darkvater <Darkvater@openttd.org> | 2006-08-26 14:41:16 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-08-26 14:41:16 +0000 |
commit | 93c3e33fd7e4602410116d735a2cbb813642124b (patch) | |
tree | d238ea7b439c77be803528c46ba38e0a4afe2481 | |
parent | 3201dca9ac28b8f30a3de88a074b3b51960f0f8b (diff) | |
download | openttd-93c3e33fd7e4602410116d735a2cbb813642124b.tar.xz |
(svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT.
-rw-r--r-- | variables.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/variables.h b/variables.h index eaf3ce576..44b3750d9 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; |