- Added missing newline characters to [BSP rebuilding] messages in p_glnodes.cpp.

SVN r3337 (trunk)
This commit is contained in:
Randy Heit 2012-01-21 23:48:46 +00:00
parent 83fc6cf53a
commit a408a913bc
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}