From 96d58bb138961745ba87c5944c2b40de9d3c9d2b Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Thu, 16 Nov 2023 22:58:34 +0900 Subject: [PATCH] ebiten: bug fix: wrong screenshot file names Closes #2844 --- imagedumper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imagedumper.go b/imagedumper.go index b081471bf38e..de49254bbf1d 100644 --- a/imagedumper.go +++ b/imagedumper.go @@ -26,7 +26,7 @@ import ( ) func datetimeForFilename() string { - const datetimeFormat = "20060102030405" + const datetimeFormat = "20060102150405" now := time.Now() return now.Format(datetimeFormat) }