mirror of https://github.com/axmolengine/axmol.git
Merge pull request #5848 from samuele3hu/develop_3_fix
Update `bindings-generator` submodule and resolve a error about the return value of FileUtilsWin32::getWritablePath()
This commit is contained in:
commit
7a16ffff84
|
@ -293,7 +293,7 @@ string FileUtilsWin32::getWritablePath() const
|
||||||
// Create directory
|
// Create directory
|
||||||
if (SUCCEEDED(SHCreateDirectoryExA(NULL, ret.c_str(), NULL)))
|
if (SUCCEEDED(SHCreateDirectoryExA(NULL, ret.c_str(), NULL)))
|
||||||
{
|
{
|
||||||
return ret;
|
return convertPathFormatToUnixStyle(ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 34dfbf64971a955995fe9762ab33ddbf907a1be3
|
Subproject commit 3b7246e9d86f52f7391de614cfce506cc105baa2
|
Loading…
Reference in New Issue