From e2cfb2da6f2a9bf7b2f47ef77f8e56fcba3e3fe2 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 21 Jan 2019 00:41:54 +0900 Subject: [PATCH] restorable: Fix comments --- internal/restorable/image.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/restorable/image.go b/internal/restorable/image.go index f0ea0901b..a78fea586 100644 --- a/internal/restorable/image.go +++ b/internal/restorable/image.go @@ -102,7 +102,7 @@ func NewScreenFramebufferImage(width, height int) *Image { func (i *Image) clear() { // There are not 'drawImageHistoryItem's for this image and dummyImage. - // As dummyImage is a priority image, this is restored faster than other regular images. + // As dummyImage is a priority image, this is restored before other regular images are restored. w, h := i.Size() sw, sh := dummyImage.Size() dw := graphics.NextPowerOf2Int(w)