I have a timer that goes 1.1 1.2 1.3 1.4 etc but then it goes 1.499999999 1.59999999 1.69999999 1.79999999 and on. I need it to stay with the original 2 digits. How do I do this? Here's the update function for my timer:
func update() {
// Something Swag
if timerRunning == true{
timerCountM += 0.1
duringPlayTimerLbl.text = "\(timerCountM)"
}else{
}
}