ebiten: bug fix: wrong screenshot file names

Closes #2844
This commit is contained in:
Hajime Hoshi 2023-11-16 22:58:34 +09:00
parent 3635b67f31
commit 3d1df32f43

View File

@ -26,7 +26,7 @@ import (
) )
func datetimeForFilename() string { func datetimeForFilename() string {
const datetimeFormat = "20060102030405" const datetimeFormat = "20060102150405"
now := time.Now() now := time.Now()
return now.Format(datetimeFormat) return now.Format(datetimeFormat)
} }