Quote:
Originally Posted by Dark Style
Code:
ShowSyncHudMsg(0, g_msgsync, "Infection on %i", countdown_timer-1); //the new way
//--->
ShowSyncHudMsg(0, g_msgsync, "Infection on %i", countdown_timer);
countdown_timer-1;
(For what i understood)
|
Well, on the first use you show the value of "countdown_timer" less one, but the value don't change never. With the second use, you show the value of "countdown_timer" and later you remove one from this value.
asdfdsdf, you understand it?