From f48e385e685a69262046269bd5531ab708a512b2 Mon Sep 17 00:00:00 2001 From: Misa Date: Thu, 23 Sep 2021 23:26:28 -0700 Subject: [PATCH] Remove Ethan's binary-or comment This comment was referring to a now-deleted variable named mkdirResult that was binary-"or"ed with all mkdir() results... except for the saves directory. That variable was only used for save file migration, which is now axed, so this comment is referring to nothing now. I don't really know the answer to Ethan's question, but it doesn't matter now. --- 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 a396beaa..25f2acda 100644 --- a/desktop_version/src/FileSystemUtils.cpp +++ b/desktop_version/src/FileSystemUtils.cpp @@ -122,7 +122,7 @@ int FILESYSTEM_init(char *argvZero, char* baseDir, char *assetsPath) "saves", pathSep ); - mkdir(saveDir, 0777); /* FIXME: Why did I not | this? -flibit */ + mkdir(saveDir, 0777); vlog_info("Save directory: %s", saveDir); /* Store full level directory */