Speedometer, Help with status...
#1

Hey, I've made a Speedometer textdraw, but I want the Status to be limited.

How do you limit:

1000.000000
to
1000.0

??
Reply
#2

pawn Код:
new Float:float = 1.00000;
printf("%f", float); //will print 1.000000
printf("%.1f", float); //will print 1.0
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)