mirror of
https://github.com/nzp-team/fteqw.git
synced 2025-02-18 09:51:50 +00:00
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:
parent
2c175ab870
commit
d38f681655
1 changed files with 2 additions and 2 deletions
|
@ -3014,12 +3014,12 @@ int CM_GetQ2Palette (void)
|
||||||
char *f = (void *)COM_LoadMallocFile("pics/colormap.pcx");
|
char *f = (void *)COM_LoadMallocFile("pics/colormap.pcx");
|
||||||
if (!f)
|
if (!f)
|
||||||
{
|
{
|
||||||
Con_Printf ("Couldn't find pics/colormap.pcx");
|
Con_Printf ("Couldn't find pics/colormap.pcx\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (!ReadPCXPalette(f, com_filesize, d_q28to24table))
|
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);
|
BZ_Free(f);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue