diff --git a/examples/flappy/main.go b/examples/flappy/main.go index 0bf126e23..219711496 100644 --- a/examples/flappy/main.go +++ b/examples/flappy/main.go @@ -245,7 +245,7 @@ func (g *Game) Update(screen *ebiten.Image) error { case ModeTitle: texts = []string{"FLAPPY GOPHER", "", "", "", "", "PRESS SPACE KEY", "", "OR TOUCH SCREEN"} case ModeGameOver: - texts = []string{"", "GAMEOVER!"} + texts = []string{"", "GAME OVER!"} } for i, l := range texts { x := (screenWidth - len(l)*fontSize) / 2