Fix a DBG in case the native path is wide string

This commit is contained in:
Jean Pierre Cimalando 2020-09-27 15:02:56 +02:00
parent 5b28feac03
commit 4a90ae166a

View file

@ -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() << ")");
return false;
}
DBG("Updating " << filename << " to " << newPath.native());
DBG("Updating " << filename << " to " << newPath);
filename = newPath.string();
return true;
#endif