[Scummvm-cvs-logs] SF.net SVN: scummvm:[35345] scummvm/trunk/engines/touche/touche.cpp
cyx at users.sourceforge.net
cyx at users.sourceforge.net
Sat Dec 13 20:38:48 CET 2008
Revision: 35345
http://scummvm.svn.sourceforge.net/scummvm/?rev=35345&view=rev
Author: cyx
Date: 2008-12-13 19:38:48 +0000 (Sat, 13 Dec 2008)
Log Message:
-----------
fixed wrong z-reordering when one of the keychars is 0
Modified Paths:
--------------
scummvm/trunk/engines/touche/touche.cpp
Modified: scummvm/trunk/engines/touche/touche.cpp
===================================================================
--- scummvm/trunk/engines/touche/touche.cpp 2008-12-13 19:35:33 UTC (rev 35344)
+++ scummvm/trunk/engines/touche/touche.cpp 2008-12-13 19:38:48 UTC (rev 35345)
@@ -527,7 +527,7 @@
SWAP(_sortedKeyCharsTable[j], _sortedKeyCharsTable[j + 1]);
hasSwapped = true;
}
- } else if (key1->num != 0) {
+ } else if (key2->num != 0) {
SWAP(_sortedKeyCharsTable[j], _sortedKeyCharsTable[j + 1]);
hasSwapped = true;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list