From 424b831b9a5b47b98b5e96d2af19835c49ae8d89 Mon Sep 17 00:00:00 2001 From: Charles Lohr Date: Fri, 25 Mar 2005 22:46:12 +0000 Subject: [PATCH] Fix: change operand order to utilize VC 6 hack --- stepmania/src/OptionRow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/OptionRow.cpp b/stepmania/src/OptionRow.cpp index 71783aee51..2c4d66a0f7 100644 --- a/stepmania/src/OptionRow.cpp +++ b/stepmania/src/OptionRow.cpp @@ -43,7 +43,7 @@ void OptionRow::PrepareItemText( CString &s ) const // HACK: Always theme the NEXT_ROW and EXIT items, even if metrics says not to theme. if( s == NEXT_ROW_NAME ) bTheme = true; if( s == EXIT_NAME ) bTheme = true; - if( m_RowDef.m_bAllowThemeItems && THEME_ITEMS ) bTheme = true; + if( THEME_ITEMS && m_RowDef.m_bAllowThemeItems ) bTheme = true; if( bTheme ) s = THEME_OPTION_ITEM( s, false );