summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2006-08-26 14:41:16 +0000
committerDarkvater <Darkvater@openttd.org>2006-08-26 14:41:16 +0000
commit93c3e33fd7e4602410116d735a2cbb813642124b (patch)
treed238ea7b439c77be803528c46ba38e0a4afe2481
parent3201dca9ac28b8f30a3de88a074b3b51960f0f8b (diff)
downloadopenttd-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.h2
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;