Remove unnecessary braces.

This commit is contained in:
Steve Checkoway
2009-05-24 01:38:42 +00:00
parent 85e81e0c0f
commit 14e4a4a249
+1 -4
View File
@@ -152,15 +152,12 @@ void Trail::GetDisplayBpms( DisplayBpms &AddTo ) const
{ {
case Song::DISPLAY_ACTUAL: case Song::DISPLAY_ACTUAL:
case Song::DISPLAY_SPECIFIED: case Song::DISPLAY_SPECIFIED:
{
pSong->GetDisplayBpms( AddTo ); pSong->GetDisplayBpms( AddTo );
}
break; break;
case Song::DISPLAY_RANDOM: case Song::DISPLAY_RANDOM:
AddTo.Add( -1 ); AddTo.Add( -1 );
break; break;
default: DEFAULT_FAIL( pSong->m_DisplayBPMType );
ASSERT(0);
} }
} }
} }