From 2e630ce06c7d97bf0309e30200e37175f1533b57 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sun, 11 Apr 2021 11:44:56 -0400 Subject: [PATCH] Forgot a 0... --- desktop_version/src/FileSystemUtils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/src/FileSystemUtils.cpp b/desktop_version/src/FileSystemUtils.cpp index c14908cd..ec3d4b00 100644 --- a/desktop_version/src/FileSystemUtils.cpp +++ b/desktop_version/src/FileSystemUtils.cpp @@ -84,7 +84,7 @@ int FILESYSTEM_init(char *argvZero, char* baseDir, char *assetsPath) } /* Create base user directory (NOT with PhysFS!), mount */ - mkdirResult = mkdir(output, 777); + mkdirResult = mkdir(output, 0777); /* Mount our base user directory */ PHYSFS_mount(output, NULL, 0);