mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 06:41:58 +00:00
better handling of illegal mode values
This commit is contained in:
parent
89a5a6429e
commit
53fc214d00
1 changed files with 8 additions and 3 deletions
|
@ -423,7 +423,7 @@ static void GraphicsOptions_CheckConfig( void )
|
|||
continue;
|
||||
if ( s_ivo_templates[i].driver != s_graphicsoptions.driver.curvalue )
|
||||
continue;
|
||||
if ( s_ivo_templates[i].mode != s_graphicsoptions.mode.curvalue )
|
||||
if ( GraphicsOptions_FindDetectedResolution(s_ivo_templates[i].mode) != s_graphicsoptions.mode.curvalue )
|
||||
continue;
|
||||
if ( s_ivo_templates[i].fullscreen != s_graphicsoptions.fs.curvalue )
|
||||
continue;
|
||||
|
@ -555,7 +555,12 @@ static void GraphicsOptions_ApplyChanges( void *unused, int notification )
|
|||
if( resolutionsDetected )
|
||||
{
|
||||
// search for builtin mode that matches the detected mode
|
||||
int mode = GraphicsOptions_FindBuiltinResolution( s_graphicsoptions.mode.curvalue );
|
||||
int mode;
|
||||
if ( s_graphicsoptions.mode.curvalue == -1
|
||||
|| s_graphicsoptions.mode.curvalue >= sizeof(detectedResolutions)/sizeof(detectedResolutions[0]) )
|
||||
s_graphicsoptions.mode.curvalue = 0;
|
||||
|
||||
mode = GraphicsOptions_FindBuiltinResolution( s_graphicsoptions.mode.curvalue );
|
||||
if( mode == -1 )
|
||||
{
|
||||
char w[ 16 ], h[ 16 ];
|
||||
|
@ -633,7 +638,7 @@ static void GraphicsOptions_Event( void* ptr, int event ) {
|
|||
case ID_LIST:
|
||||
ivo = &s_ivo_templates[s_graphicsoptions.list.curvalue];
|
||||
|
||||
s_graphicsoptions.mode.curvalue = ivo->mode;
|
||||
s_graphicsoptions.mode.curvalue = GraphicsOptions_FindDetectedResolution(ivo->mode);
|
||||
s_graphicsoptions.tq.curvalue = ivo->tq;
|
||||
s_graphicsoptions.lighting.curvalue = ivo->lighting;
|
||||
s_graphicsoptions.colordepth.curvalue = ivo->colordepth;
|
||||
|
|
Loading…
Reference in a new issue