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; }