RageDisplay_Null.cpp:89: warning: missing initializer for member `DisplayResolution::bStretched'

This commit is contained in:
Glenn Maynard
2006-06-25 21:42:50 +00:00
parent 861d515d82
commit c08e133f02
+1 -1
View File
@@ -86,7 +86,7 @@ RString RageDisplay_Null::Init( const VideoModeParams &p, bool bAllowUnaccelerat
void RageDisplay_Null::GetDisplayResolutions( DisplayResolutions &out ) const
{
out.clear();
DisplayResolution res = { 640, 480 };
DisplayResolution res = { 640, 480, true };
out.insert( res );
}