ebiten: Fix comments

This commit is contained in:
Hajime Hoshi 2020-10-18 01:29:35 +09:00
parent fe558545c7
commit ac6930f831

2
run.go
View File

@ -69,7 +69,7 @@ type Game interface {
Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int)
}
// TPS represents a default ticks per second, that represents how many times game updating happens in a second.
// DefaultTPS represents a default ticks per second, that represents how many times game updating happens in a second.
const DefaultTPS = 60
// FPS represents the default TPS (tick per second). This is for backward compatibility.