engine: filesystem: fix missing newline in debug message

This commit is contained in:
a1batross 2021-06-22 11:31:53 +03:00
parent 79f3a6f60e
commit 4abe1a77f4

View File

@ -2349,7 +2349,7 @@ file_t *FS_OpenZipFile( zip_t *zip, int pack_ind )
// compressed files handled in Zip_LoadFile // compressed files handled in Zip_LoadFile
if( pfile->flags != ZIP_COMPRESSION_NO_COMPRESSION ) if( pfile->flags != ZIP_COMPRESSION_NO_COMPRESSION )
{ {
Con_Printf( S_ERROR "%s: can't open compressed file %s", __FUNCTION__, pfile->name ); Con_Printf( S_ERROR "%s: can't open compressed file %s\n", __FUNCTION__, pfile->name );
return NULL; return NULL;
} }