SDL_CreateDirectory(): directory tree creation for absolute paths for non-Windows platforms

This commit is contained in:
Petar Popovic 2024-10-27 23:35:54 +01:00 committed by Ryan C. Gordon
parent a10578acbd
commit cb0c7c9680

View file

@ -89,6 +89,9 @@ bool SDL_CreateDirectory(const char *path)
} }
#else #else
const bool issep = (ch == '/'); const bool issep = (ch == '/');
if (issep && ((ptr - parents) == 0)) {
continue; // it's just the root directory, skip it.
}
#endif #endif
if (issep) { if (issep) {