Revert "default speed unit: cast to int64" This reverts commit 016f13abda311b8a11b443c9d38f589ffecea10b.
Vladimir Bauer
3 years ago
1 changed file(s) with
1 addition(s)
and
1 deletion(s)
.
Raw diff
Collapse all
Expand all
+1
-1
decor/speed.go
less
more
169
169
}
170
170
default:
171
171
return func(speed float64) string {
172
return fmt.Sprintf(format, int64(math.Round(speed)))
172
return fmt.Sprintf(format, speed)
173
173
}
174
174
}
175
175
}