timer.cpp fix

This commit is contained in:
a1batross 2015-11-08 02:12:43 +03:00
parent 37a506abd7
commit 97defe2fe3

View File

@ -38,7 +38,7 @@ int CHudTimer::Draw( float fTime )
int minutes = max( 0, (int)( m_iTime + m_fStartTime - gHUD.m_flTime ) / 60);
int seconds = max( 0, (int)( m_iTime + m_fStartTime - gHUD.m_flTime ) - (minutes * 60));
if( m_iTime < 20) )
if( m_iTime > 20 )
{
UnpackRGB(r,g,b, RGB_YELLOWISH );
}