From 129deee5bece7e73c7a21a9f42c6031f9f9fc87b Mon Sep 17 00:00:00 2001 From: Milan Nikolic Date: Sun, 27 Nov 2022 20:28:31 +0100 Subject: [PATCH] Fmt --- raylib/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/raylib/utils.go b/raylib/utils.go index 0ada3de..7c3ec7b 100644 --- a/raylib/utils.go +++ b/raylib/utils.go @@ -35,7 +35,7 @@ func TraceLog(logLevel TraceLogLevel, text string, v ...interface{}) { // HomeDir - Returns user home directory // NOTE: On Android this returns internal data path and must be called after InitWindow -func HomeDir() string { +func HomeDir() string { if homeDir, err := os.UserHomeDir(); err == nil { return homeDir }