From 3b9604efab8817cb56be626949cc341a40a15b8e Mon Sep 17 00:00:00 2001 From: Thomas Friedel Date: Sun, 10 Jun 2018 17:52:59 +0200 Subject: [PATCH] bugfix, cached images were only rendered from the next frame onwards --- images.go | 1 + 1 file changed, 1 insertion(+) diff --git a/images.go b/images.go index 151a17e..9330c59 100644 --- a/images.go +++ b/images.go @@ -83,6 +83,7 @@ func getImage(image interface{}) *Image { return nil } images[v] = img + return img } return nil }