From 9a4f30c23a7b87e5f5bf3e4e4039c845cba38d66 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 6 Oct 2013 14:53:03 +0000 Subject: Change netgame version mismatch message to be reminiscent of the Vanilla message (thanks Alexandre Xavier). Subversion-branch: /branches/v2-branch Subversion-revision: 2693 --- src/net_structrw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/net_structrw.c') diff --git a/src/net_structrw.c b/src/net_structrw.c index 19996b14..10b035c0 100644 --- a/src/net_structrw.c +++ b/src/net_structrw.c @@ -571,7 +571,7 @@ void NET_SafePuts(char *s) for (p=s; *p; ++p) { - if (isprint(*p)) + if (isprint(*p) || *p == '\n') putchar(*p); } -- cgit v1.2.3