We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c966eb commit fc26eabCopy full SHA for fc26eab
game.go
@@ -20,11 +20,11 @@ import (
20
"flag"
21
"fmt"
22
"log"
23
+ "math"
24
"math/rand"
25
"os"
26
"path/filepath"
27
"reflect"
- "strconv"
28
"sync"
29
"time"
30
"unsafe"
@@ -1225,8 +1225,7 @@ func (p *Game) Wait(secs float64) {
1225
}
1226
1227
func (p *Game) Timer() float64 {
1228
- result, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", gtime.Timer()), 64)
1229
- return result
+ return math.Trunc(gtime.Timer()*1000) / 1000
1230
1231
1232
func (p *Game) ResetTimer() {
0 commit comments