(svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT.
--- a/variables.h Sat Aug 26 14:39:05 2006 +0000
+++ b/variables.h Sat Aug 26 14:41:16 2006 +0000
@@ -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;