From c08e133f02242316c61db6717bb7b809ecb6def6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 25 Jun 2006 21:42:50 +0000 Subject: [PATCH] RageDisplay_Null.cpp:89: warning: missing initializer for member `DisplayResolution::bStretched' --- stepmania/src/RageDisplay_Null.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/RageDisplay_Null.cpp b/stepmania/src/RageDisplay_Null.cpp index 0bcfdf4132..aef9f9fc7f 100644 --- a/stepmania/src/RageDisplay_Null.cpp +++ b/stepmania/src/RageDisplay_Null.cpp @@ -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 ); }