mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-01-18 23:21:39 +00:00
Remove erroneous new line from error message
This commit is contained in:
parent
77ad75887f
commit
e5af084211
1 changed files with 2 additions and 2 deletions
|
@ -144,10 +144,10 @@ static void GLimp_DetectAvailableModes(void)
|
|||
}
|
||||
|
||||
numSDLModes = SDL_GetNumDisplayModes( display );
|
||||
modes = SDL_calloc( numSDLModes, sizeof( SDL_Rect ));
|
||||
modes = SDL_calloc( numSDLModes, sizeof( SDL_Rect ) );
|
||||
if ( !modes )
|
||||
{
|
||||
ri.Error( ERR_FATAL, "Out of memory\n" );
|
||||
ri.Error( ERR_FATAL, "Out of memory" );
|
||||
}
|
||||
|
||||
for( i = 0; i < numSDLModes; i++ )
|
||||
|
|
Loading…
Reference in a new issue