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