Remove unnecessary braces.

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