Skip to content

Commit 76e5cc9

Browse files
committed
33 mines
Signed-off-by: plutov <a.pliutau@gmail.com>
1 parent c226572 commit 76e5cc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

33-raylib-go-minesweeper/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ func (s *state) getStatus() string {
5757
func (s *state) reset() {
5858
s.gameOver = false
5959
s.gameWon = false
60-
s.startedAt = time.Now()
6160
s.menu = true
6261
s.rows = 9
6362
s.cols = 9
@@ -93,6 +92,7 @@ func (s *state) start() {
9392
}
9493

9594
s.menu = false
95+
s.startedAt = time.Now()
9696
}
9797

9898
func (s *state) doForNeighbours(x, y int, do func(x, y int)) {

0 commit comments

Comments
 (0)