From 160441bb0756a5dc8228eb4159631f6e6ce778d3 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Tue, 30 Mar 2021 00:31:57 +0900 Subject: [PATCH] ebiten: Bug fix: Wrong documentation about SetScreenClearedEveryFrame Closes #1555 --- run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.go b/run.go index 1505d164c..3fe2a9db6 100644 --- a/run.go +++ b/run.go @@ -79,7 +79,7 @@ var ( ) // SetScreenClearedEveryFrame enables or disables the clearing of the screen at the beginning of each frame. -// The default value is false and the screen is cleared each frame by default. +// The default value is true and the screen is cleared each frame by default. // // SetScreenClearedEveryFrame is concurrent-safe. func SetScreenClearedEveryFrame(cleared bool) {