Quote:
Originally Posted by Seven_of_Nine
pawn Код:
if(minutes < 10) { format(strr,sizeof(strr),"%d:0%d",minutes,seconds); } else { format(strr,sizeof(strr),"%d:%2d",minutes,seconds); }
|
that might work.. also u mean (seconds < 10) not minutes ?
is that the only way? why doesnt %2d work tho ? its suppose to force it into two digits.. :/