mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +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