Remove newlines from Com_Error message format strings, patch by DevHC
This commit is contained in:
parent
59271903a2
commit
c95bd0a684
20 changed files with 60 additions and 60 deletions
|
@ -82,7 +82,7 @@ SafeFS_Write
|
|||
static ID_INLINE void SafeFS_Write( const void *buffer, int len, fileHandle_t f )
|
||||
{
|
||||
if( FS_Write( buffer, len, f ) < len )
|
||||
Com_Error( ERR_DROP, "Failed to write avi file\n" );
|
||||
Com_Error( ERR_DROP, "Failed to write avi file" );
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -142,7 +142,7 @@ static ID_INLINE void START_CHUNK( const char *s )
|
|||
{
|
||||
if( afd.chunkStackTop == MAX_RIFF_CHUNKS )
|
||||
{
|
||||
Com_Error( ERR_DROP, "ERROR: Top of chunkstack breached\n" );
|
||||
Com_Error( ERR_DROP, "ERROR: Top of chunkstack breached" );
|
||||
}
|
||||
|
||||
afd.chunkStack[ afd.chunkStackTop ] = bufIndex;
|
||||
|
@ -162,7 +162,7 @@ static ID_INLINE void END_CHUNK( void )
|
|||
|
||||
if( afd.chunkStackTop <= 0 )
|
||||
{
|
||||
Com_Error( ERR_DROP, "ERROR: Bottom of chunkstack breached\n" );
|
||||
Com_Error( ERR_DROP, "ERROR: Bottom of chunkstack breached" );
|
||||
}
|
||||
|
||||
afd.chunkStackTop--;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue