ui: Fix comments

This commit is contained in:
Hajime Hoshi 2019-01-13 23:25:32 +09:00
parent 6ed4bbc0a2
commit ddecc1c602

4
run.go
View File

@ -114,8 +114,8 @@ func run(width, height int, scale float64, title string, g *graphicsContext, mai
// Run must be called on the main thread.
// Note that Ebiten bounds the main goroutine to the main OS thread by runtime.LockOSThread.
//
// Ebiten tries to call f 60 times a second. In other words,
// TPS (ticks per second) is 60.
// Ebiten tries to call f 60 times a second by default. In other words,
// TPS (ticks per second) is 60 by default.
// This is not related to framerate (display's refresh rate).
//
// f is not called when the window is in background by default.