(svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT.
authorDarkvater
Sat, 26 Aug 2006 14:41:16 +0000
changeset 4387 3d8fe06fb594
parent 4386 8a51b76f79e7
child 4388 c8a66d26e146
(svn r6140) -Codechange: fix the comment of _shift_pressed. It doesn't react to ALT, but to SHIFT.
variables.h
--- 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;