mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-31 22:19:44 +01:00
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.
This commit is contained in:
parent
1b7a1248a8
commit
f48e385e68
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue