Fix a DBG in case the native path is wide string
This commit is contained in:
parent
5b28feac03
commit
4a90ae166a
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ bool sfz::FilePool::checkSample(std::string& filename) const noexcept
|
||||||
DBG("Error extracting the new relative path for " << filename << " (Error code: " << ec.message() << ")");
|
DBG("Error extracting the new relative path for " << filename << " (Error code: " << ec.message() << ")");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
DBG("Updating " << filename << " to " << newPath.native());
|
DBG("Updating " << filename << " to " << newPath);
|
||||||
filename = newPath.string();
|
filename = newPath.string();
|
||||||
return true;
|
return true;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue