From 35557e845d402994abc1330c318f67bee2952848 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 7 Apr 2018 23:26:28 +0900 Subject: [PATCH] examples/flappy: Improve message --- examples/flappy/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/flappy/main.go b/examples/flappy/main.go index 63089ec9d..d7fe65767 100644 --- a/examples/flappy/main.go +++ b/examples/flappy/main.go @@ -239,7 +239,7 @@ func (g *Game) Update(screen *ebiten.Image) error { var texts []string switch g.mode { case ModeTitle: - texts = []string{"FLAPPY GOPHER", "", "", "", "", "PRESS SPACE"} + texts = []string{"FLAPPY GOPHER", "", "", "", "", "PRESS SPACE KEY", "", "OR TOUCH SCREEN"} case ModeGameOver: texts = []string{"", "GAMEOVER!"} }