Fix by Laurent Desnogues for my feeble attempt at a fix

This commit is contained in:
Thilo Schulz 2011-06-21 19:33:02 +00:00
parent 2d1187b287
commit d9ea902c31
1 changed files with 3 additions and 1 deletions

View File

@ -427,10 +427,12 @@ static void GraphicsOptions_GetAspectRatios( void )
char str[ sizeof(ratioBuf[0]) ];
// calculate resolution's aspect ratio
x = strchr( resolutions[r], 'x' ) + 1;
x = strchr( resolutions[r], 'x' );
if(!x)
continue;
x++;
Q_strncpyz( str, resolutions[r], x-resolutions[r] );
w = atoi( str );