From 84588db3855d90bd96a65e88812665a385d2b087 Mon Sep 17 00:00:00 2001 From: Geoff Benson Date: Tue, 24 Aug 2004 13:11:26 +0000 Subject: [PATCH] Minor bugfix - 8-panel Rave is now selectable again --- stepmania/src/ModeChoice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ModeChoice.cpp b/stepmania/src/ModeChoice.cpp index bfbba1829e..1307e7510c 100644 --- a/stepmania/src/ModeChoice.cpp +++ b/stepmania/src/ModeChoice.cpp @@ -270,7 +270,7 @@ static bool AreStyleAndPlayModeCompatible( const Style *style, PlayMode pm ) // This is correct for dance (ie, no rave for solo and doubles), // and should be okay for pump .. not sure about other game types. // Techno Motion scales down versus arrows, though, so allow this. - if( style->m_iColsPerPlayer >= 6 && CString(GAMESTATE->m_pCurGame->m_szName) == "techno" ) + if( style->m_iColsPerPlayer >= 6 && CString(GAMESTATE->m_pCurGame->m_szName) != "techno" ) return false; /* Don't allow battle modes if the style takes both sides. */