Added the missing null terminator for a reliable message send.

This commit is contained in:
Daniel Anderson 2004-01-05 00:25:58 +00:00
parent dfe7f263c7
commit 85beae40f0

View file

@ -120,6 +120,7 @@ SV_FlushRedirect (void)
ClientReliableWrite_Begin (cl, svc_print, bytes + 3);
ClientReliableWrite_Byte (cl, PRINT_HIGH);
ClientReliableWrite_SZ (cl, p, bytes);
ClientReliableWrite_Byte (cl, 0);
p += bytes;
count -= bytes;
}