ebiten: Fix a comment

This commit is contained in:
Hajime Hoshi 2021-05-29 14:35:28 +09:00
parent c46981a719
commit b51c692e50

2
run.go
View File

@ -183,7 +183,7 @@ func isRunGameEnded() bool {
}
// RunGameWithoutMainLoop runs the game, but doesn't call the loop on the main (UI) thread.
// Different from Run, RunGameWithoutMainLoop returns immediately.
// RunGameWithoutMainLoop returns immediately unlike Run.
//
// Ebiten users should NOT call RunGameWithoutMainLoop.
// Instead, functions in github.com/hajimehoshi/ebiten/v2/mobile package calls this.