fix(file): added missing increment inside MakeUnivPath

This commit is contained in:
phaneron 2023-12-02 12:10:17 -05:00
parent 05c63dbea7
commit 9c714d93df

View file

@ -179,6 +179,8 @@ bool MakeUnivPath(const char* path, char* result, size_t capacity) {
}
result[i] = path[i] == '\\' ? '/' : path[i];
i++;
}
result[0] = '\0';