This commit is contained in:
Glenn Maynard
2003-05-12 01:01:22 +00:00
parent d223ca4217
commit 7bbe0a8ecd
+6 -6
View File
@@ -811,10 +811,12 @@ void ScreenEvaluation::Update( float fDeltaTime )
for( int l=0; l<NUM_JUDGE_LINES; l++ )
{
if(SHOW_JUDGMENT(l))
{
if(m_TimeToPlayJudgeSound[l] != -1)
{
if(!SHOW_JUDGMENT(l))
continue;
if(m_TimeToPlayJudgeSound[l] == -1)
continue;
RageColor c;
c.a = 1;
if((m_fScreenCreateTime + m_TimeToPlayJudgeSound[l]) < RageTimer::GetTimeSinceStart())
@@ -827,8 +829,6 @@ void ScreenEvaluation::Update( float fDeltaTime )
}
}
}
}
}
void ScreenEvaluation::DrawPrimitives()
{