Make debug messages not to screw text log
authorunc0rr
Mon, 27 Oct 2008 21:01:18 +0000
changeset 1432 ab212288d34d
parent 1431 21ca09524f9c
child 1433 4af291d5d79c
Make debug messages not to screw text log
hedgewars/uIO.pas
--- a/hedgewars/uIO.pas	Mon Oct 27 16:49:42 2008 +0000
+++ b/hedgewars/uIO.pas	Mon Oct 27 21:01:18 2008 +0000
@@ -164,7 +164,7 @@
    begin
    if s[0]>#251 then s[0]:= #251;
    SDLNet_Write16(GameTicks, @s[Succ(byte(s[0]))]);
-   {$IFDEF DEBUGFILE}AddFileLog('IPC send: '+s);{$ENDIF}
+   {$IFDEF DEBUGFILE}AddFileLog('IPC send: '+s[1]);{$ENDIF}
    inc(s[0], 2);
    SDLNet_TCP_Send(IPCSock, @s, Succ(byte(s[0])))
    end