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++ ) for( int l=0; l<NUM_JUDGE_LINES; l++ )
{ {
if(SHOW_JUDGMENT(l)) if(!SHOW_JUDGMENT(l))
{ continue;
if(m_TimeToPlayJudgeSound[l] != -1)
{ if(m_TimeToPlayJudgeSound[l] == -1)
continue;
RageColor c; RageColor c;
c.a = 1; c.a = 1;
if((m_fScreenCreateTime + m_TimeToPlayJudgeSound[l]) < RageTimer::GetTimeSinceStart()) if((m_fScreenCreateTime + m_TimeToPlayJudgeSound[l]) < RageTimer::GetTimeSinceStart())
@@ -826,8 +828,6 @@ void ScreenEvaluation::Update( float fDeltaTime )
} }
} }
} }
}
}
} }
void ScreenEvaluation::DrawPrimitives() void ScreenEvaluation::DrawPrimitives()