From c1520c025be4432905b57f554894593922b9d7a5 Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Tue, 7 Feb 2006 08:33:45 +0000 Subject: [PATCH] Add bStretched as a hint that the display will stretch the pixels to fill the screen. --- stepmania/src/DisplayResolutions.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stepmania/src/DisplayResolutions.h b/stepmania/src/DisplayResolutions.h index bdef744370..bdb0a78da2 100644 --- a/stepmania/src/DisplayResolutions.h +++ b/stepmania/src/DisplayResolutions.h @@ -8,12 +8,14 @@ class DisplayResolution public: int iWidth; int iHeight; + bool bStretched; bool operator<( const DisplayResolution &other ) const { #define COMPARE(x) if( x != other.x ) return x < other.x; COMPARE( iWidth ); COMPARE( iHeight ); + COMPARE( bStretched ); #undef COMPARE return false; }