Skip to content

Commit fc26eab

Browse files
author
hai.lin
committed
22
1 parent 3c966eb commit fc26eab

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

game.go

+2-3
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ import (
2020
"flag"
2121
"fmt"
2222
"log"
23+
"math"
2324
"math/rand"
2425
"os"
2526
"path/filepath"
2627
"reflect"
27-
"strconv"
2828
"sync"
2929
"time"
3030
"unsafe"
@@ -1225,8 +1225,7 @@ func (p *Game) Wait(secs float64) {
12251225
}
12261226

12271227
func (p *Game) Timer() float64 {
1228-
result, _ := strconv.ParseFloat(fmt.Sprintf("%.2f", gtime.Timer()), 64)
1229-
return result
1228+
return math.Trunc(gtime.Timer()*1000) / 1000
12301229
}
12311230

12321231
func (p *Game) ResetTimer() {

0 commit comments

Comments
 (0)