From 725ee654ba80a2e86978fc722086b68e3f450e5a Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Wed, 28 Dec 2016 10:54:49 +0900 Subject: [PATCH] Updated Tutorial:Screen, colors and squares (markdown) --- Tutorial:Screen,-colors-and-squares.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tutorial:Screen,-colors-and-squares.md b/Tutorial:Screen,-colors-and-squares.md index ec98de8..4a54b49 100644 --- a/Tutorial:Screen,-colors-and-squares.md +++ b/Tutorial:Screen,-colors-and-squares.md @@ -14,8 +14,8 @@ import ( func update(screen *ebiten.Image) error { // Display the text though the debug function - ebitenutil.DebugPrint(screen, "Our first game in Ebiten!") - + if err := ebitenutil.DebugPrint(screen, "Our first game in Ebiten!"); err != nil { + } return nil }