mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-08 14:58:08 +00:00
change make_directory behavior on Linux to match Windows behavior
This commit is contained in:
committed by
Ryan Fleury
parent
a1f0df2d76
commit
5089a01058
@@ -1159,6 +1159,11 @@ make_directory(String8 path)
|
|||||||
{
|
{
|
||||||
result = 1;
|
result = 1;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// match windows behavior
|
||||||
|
result = file_path_exists(path);
|
||||||
|
}
|
||||||
scratch_end(scratch);
|
scratch_end(scratch);
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
Reference in New Issue
Block a user