hedgewars/uIO.pas
changeset 2691 c0da3a98c01c
parent 2645 89aa2aa89066
child 2695 ed789a7ef68d
--- a/hedgewars/uIO.pas	Sat Jan 09 01:34:23 2010 +0000
+++ b/hedgewars/uIO.pas	Sun Jan 10 00:52:20 2010 +0000
@@ -158,7 +158,7 @@
 		begin
 		buf[0]:= i;
 		ss:= ss + s;
-		while (Length(ss) > 1)and(Length(ss) > byte(ss[1])) do
+		while (Length(ss) > 1) and (Length(ss) > byte(ss[1])) do
 			begin
 			ParseIPCCommand(copy(ss, 2, byte(ss[1])));
 			Delete(ss, 1, Succ(byte(ss[1])))
@@ -205,7 +205,7 @@
 	SendEmptyPacketTicks:= 0;
 	if s[0]>#251 then s[0]:= #251;
 	SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]);
-	{$IFDEF DEBUGFILE}AddFileLog('IPC send: '+s[1]);{$ENDIF}
+	{$IFDEF DEBUGFILE}AddFileLog('IPC send: '+ s[1]);{$ENDIF}
 	inc(s[0], 2);
 	SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0])))
 	end