style: format code with Gofumpt

This commit fixes the style issues introduced in d72e443 according to the output
from Gofumpt.

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-01-26 11:31:36 +00:00 committed by GitHub
parent d72e443f93
commit b7701e600a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 11 deletions

View file

@ -26,7 +26,7 @@ func (c *Canvas) Update() {
c.Target = raylib.LoadRenderTexture(int32(c.Size.X), int32(c.Size.Y))
raylib.BeginTextureMode(c.Target)
//raylib.ClearBackground(raylib.White)
// raylib.ClearBackground(raylib.White)
raylib.DrawTexturePro(
c.Background,
raylib.NewRectangle(0, 0, c.Size.X, -c.Size.Y),