From 0f873f8282f57a836e9db732a2bdda8b8d35a97a Mon Sep 17 00:00:00 2001 From: Steve Checkoway Date: Sun, 1 Apr 2007 06:25:46 +0000 Subject: [PATCH] Simplify. --- stepmania/src/GameCommand.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index 043412aa11..91e9f03840 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -179,7 +179,7 @@ void GameCommand::LoadOne( const Command& cmd ) if( style ) m_pStyle = style; else - m_bInvalid |= true; + m_bInvalid = true; } else if( sName == "playmode" ) @@ -188,7 +188,7 @@ void GameCommand::LoadOne( const Command& cmd ) if( pm != PlayMode_Invalid ) m_pm = pm; else - m_bInvalid |= true; + m_bInvalid = true; } else if( sName == "difficulty" ) @@ -197,7 +197,7 @@ void GameCommand::LoadOne( const Command& cmd ) if( dc != Difficulty_Invalid ) m_dc = dc; else - m_bInvalid |= true; + m_bInvalid = true; } else if( sName == "announcer" )