Go to file
Matei 85959bb073 Fixed a crash that happened for me in release mode when pressing the shift key. In Hotkey.cpp:594, there was a line like
if( !unified[(*itKey)-UNIFIED_SHIFT] ) accept = false;

This was causing an index out of bounds when the key at *itKey was
AND'ed with the HOTKEY_NEGATION_MASK and thus became greater than 65536
and way out of bounds of the array. For now I added a check that *itKey
< HOTKEY_NEGATION_MASK, but maybe this is not the intended usage.

This was SVN commit r4111.
2006-07-14 00:14:44 +00:00
binaries This was SVN commit r4108. 2006-07-13 22:10:23 +00:00
build svn:ignore auto-generated test .cpp files. 2006-07-12 14:49:10 +00:00
docs Upgraded console (text wrap, help text), cinematic stuff 2006-07-06 03:17:44 +00:00
source Fixed a crash that happened for me in release mode when pressing the shift key. In Hotkey.cpp:594, there was a line like 2006-07-14 00:14:44 +00:00
.gitattributes Initial revision 2003-09-21 21:24:53 +00:00