mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-07 00:15:07 -06:00
Fix simple typo that prevented debug builds (MSVC)
This commit is contained in:
parent
d246f5b436
commit
a63d6a3834
@ -305,7 +305,7 @@ bool DeleteDir(const std::string& filename) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool Rename(const std::string& srcFullPath, const std::string& destFullPath) {
|
bool Rename(const std::string& srcFullPath, const std::string& destFullPath) {
|
||||||
LOG_TRACE(Common_Filesystem, "{} --> {}", srcPath, destFullPath);
|
LOG_TRACE(Common_Filesystem, "{} --> {}", srcFullPath, destFullPath);
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (_wrename(Common::UTF8ToUTF16W(srcFullPath).c_str(),
|
if (_wrename(Common::UTF8ToUTF16W(srcFullPath).c_str(),
|
||||||
Common::UTF8ToUTF16W(destFullPath).c_str()) == 0)
|
Common::UTF8ToUTF16W(destFullPath).c_str()) == 0)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user