From 646e199e14a9e8cae19b9c9e8e0f8f30e7ce1b8a Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 28 Feb 2006 17:52:29 +0000 Subject: [PATCH] fix VC6 compile --- stepmania/src/ScreenGameplay.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenGameplay.cpp b/stepmania/src/ScreenGameplay.cpp index 6509d1cde8..1f860e305f 100644 --- a/stepmania/src/ScreenGameplay.cpp +++ b/stepmania/src/ScreenGameplay.cpp @@ -493,7 +493,7 @@ void ScreenGameplay::Init( bool bUseSongBackgroundAndForeground ) * but for now just ignore Center1Player when it's Battle or Rave * Mode. This doesn't begin to address two-player solo (6 arrows) */ if( g_bCenter1Player && - ALLOW_CENTER_1_PLAYER && + (bool)ALLOW_CENTER_1_PLAYER && GAMESTATE->m_PlayMode != PLAY_MODE_BATTLE && GAMESTATE->m_PlayMode != PLAY_MODE_RAVE && GAMESTATE->GetCurrentStyle()->m_StyleType == ONE_PLAYER_ONE_SIDE )