From 93844f840f07da96279bd3e825c85a9bc5c35b5a Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Thu, 14 Sep 2006 08:05:40 +0000 Subject: [PATCH] simplify --- stepmania/src/Screen.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/Screen.cpp b/stepmania/src/Screen.cpp index 48bd9367a0..0a78c455ba 100644 --- a/stepmania/src/Screen.cpp +++ b/stepmania/src/Screen.cpp @@ -252,8 +252,8 @@ bool Screen::JoinInput( const InputEventPlus &input ) if( GAMESTATE->m_iCoins < iCoinsNeededToJoin ) return false; // not enough coins - else - GAMESTATE->m_iCoins -= iCoinsNeededToJoin; + + GAMESTATE->m_iCoins -= iCoinsNeededToJoin; // HACK: Only play start sound for the 2nd player who joins. The // start sound for the 1st player will be played by ScreenTitleMenu