fix uninitialized VideoModeParams

This commit is contained in:
Glenn Maynard
2004-03-25 02:59:01 +00:00
parent 8d6c956ce1
commit 3661728d9d
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -656,7 +656,7 @@ RageDisplay *CreateDisplay()
#endif
}
else if( sRenderer.CompareNoCase("null")==0 )
return new RageDisplay_Null();
return new RageDisplay_Null( params );
else
RageException::Throw("Unknown video renderer value: %s", sRenderer.c_str() );
}