mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-21 15:56:58 +02:00
Update fs.
This commit is contained in:
Vendored
+1
-1
@@ -4915,7 +4915,7 @@ static fs_result fs_mkdir_stdio_win32(const char* pPath)
|
|||||||
int result;
|
int result;
|
||||||
|
|
||||||
/* If it's a drive letter segment just pretend it's successful. */
|
/* If it's a drive letter segment just pretend it's successful. */
|
||||||
if (pPath[0] >= 'a' && pPath[0] <= 'z' || pPath[0] >= 'A' && pPath[0] <= 'Z') {
|
if ((pPath[0] >= 'a' && pPath[0] <= 'z') || (pPath[0] >= 'A' && pPath[0] <= 'Z')) {
|
||||||
if (pPath[1] == ':' && pPath[2] == '\0') {
|
if (pPath[1] == ':' && pPath[2] == '\0') {
|
||||||
return FS_SUCCESS;
|
return FS_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user