diff -r 3be894730bd6 -r adb804cb2638 hedgewars/uIO.pas --- a/hedgewars/uIO.pas Sun Feb 16 16:56:53 2014 +0400 +++ b/hedgewars/uIO.pas Sun Feb 16 22:06:55 2014 +0400 @@ -223,7 +223,7 @@ case c of '+', '#', 'L', 'l', 'R', 'r', 'U', 'u', 'D', 'd', 'Z', 'z', 'A', 'a', 'S', 'j', 'J', ',', 'c', 'N', 'p', 'P', 'w', 't', '1', '2', '3', '4', '5': isSyncedCommand:= true; else - isSyncedCommand:= ((c >= #128) and (c <= char(128 + cMaxSlotIndex))) + isSyncedCommand:= ((byte(c) >= 128) and (byte(c) <= 128 + cMaxSlotIndex)) end end;