From 134722f8f726590832bcbacec70b746a67a1a715 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sat, 25 Jun 2016 03:43:03 +0900 Subject: [PATCH] ebitenutil: Fix a comment --- ebitenutil/loadimage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ebitenutil/loadimage.go b/ebitenutil/loadimage.go index 27ff97c13..793384589 100644 --- a/ebitenutil/loadimage.go +++ b/ebitenutil/loadimage.go @@ -27,7 +27,7 @@ import ( // NewImageFromFile loads the file path and returns ebiten.Image and image.Image. // // The current directory for path depends on your environment. This will vary on your desktop or web browser. -// Note that this doesn't work on browsers. +// Note that this doesn't work on mobiles. // It'll be safer to embed your resource, e.g., with github.com/jteeuwen/go-bindata instead of using this function. func NewImageFromFile(path string, filter ebiten.Filter) (*ebiten.Image, image.Image, error) { file, err := OpenFile(path)