style: format code with Gofumpt

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

Details: None
This commit is contained in:
deepsource-autofix[bot] 2024-02-09 17:49:28 +00:00 committed by GitHub
parent 59036706ea
commit f8ea0f6056
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -17,7 +17,7 @@ func main() {
raylib.SetConfigFlags(raylib.FlagWindowResizable) // | raylib.FlagWindowHighdpi | raylib.FlagMsaa4xHint)
raylib.InitWindow(applicationWindowWidth, applicationWindowHeight, applicationTitle)
raylib.SetWindowMinSize(int(applicationMinWindowWidth), int(applicationMinWindowHeight))
//raylib.SetTargetFPS(int32(raylib.GetMonitorRefreshRate(raylib.GetCurrentMonitor())))
// raylib.SetTargetFPS(int32(raylib.GetMonitorRefreshRate(raylib.GetCurrentMonitor())))
raylib.SetTargetFPS(60)
raylib.SetExitKey(raylib.KeyNull)
raylib.HideCursor()