Fix simple typo that prevented debug builds (MSVC)

This commit is contained in:
Chance 2025-12-31 12:29:53 -06:00 committed by OpenSauce
parent f31bd1bcdd
commit 43e044ad9a

View File

@ -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)