From 2b7362a66bcc1a67f67e2b6e3db8722d1d54be46 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Sun, 18 Oct 2020 01:29:35 +0900 Subject: [PATCH] ebiten: Fix comments --- run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.go b/run.go index 6b1c6cf27..5de69fc24 100644 --- a/run.go +++ b/run.go @@ -57,7 +57,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 // CurrentFPS returns the current number of FPS (frames per second), that represents