# HG changeset patch
# User unc0rr
# Date 1225141278 0
# Node ID ab212288d34dca0d05ec1e52eac75b242c0d74d4
# Parent  21ca09524f9c7f62c553e6478f8556dfd20be1eb
Make debug messages not to screw text log

diff -r 21ca09524f9c -r ab212288d34d 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