From a408a913bc48d3cd8f2f0d35875b2945a17f7975 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Sat, 21 Jan 2012 23:48:46 +0000 Subject: [PATCH] - Added missing newline characters to [BSP rebuilding] messages in p_glnodes.cpp. SVN r3337 (trunk) --- src/p_glnodes.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/p_glnodes.cpp b/src/p_glnodes.cpp index 3ca7fc6d37..7203b775ad 100644 --- a/src/p_glnodes.cpp +++ b/src/p_glnodes.cpp @@ -208,7 +208,7 @@ bool P_CheckForGLNodes() int missing = CheckForMissingSegs(); if (missing > 0) { - Printf("%d missing segs counted\nThe BSP needs to be rebuilt", missing); + Printf("%d missing segs counted\nThe BSP needs to be rebuilt.\n", missing); } return missing == 0; } @@ -718,7 +718,7 @@ static bool DoLoadGLNodes(FileReader * f, wadlump_t * lumps) int missing = CheckForMissingSegs(); if (missing > 0) { - Printf("%d missing segs counted in GL nodes.\nThe BSP has to be rebuilt", missing); + Printf("%d missing segs counted in GL nodes.\nThe BSP has to be rebuilt.\n", missing); } return missing == 0; }