Missing newlines in error messages.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1029 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2005-05-18 23:40:13 +00:00
parent 2c175ab870
commit d38f681655
1 changed files with 2 additions and 2 deletions

View File

@ -3014,12 +3014,12 @@ int CM_GetQ2Palette (void)
char *f = (void *)COM_LoadMallocFile("pics/colormap.pcx");
if (!f)
{
Con_Printf ("Couldn't find pics/colormap.pcx");
Con_Printf ("Couldn't find pics/colormap.pcx\n");
return -1;
}
if (!ReadPCXPalette(f, com_filesize, d_q28to24table))
{
Con_Printf ("Couldn't read pics/colormap.pcx");
Con_Printf ("Couldn't read pics/colormap.pcx\n");
BZ_Free(f);
return -1;
}