Log the found file with full path

This commit is contained in:
Jean Pierre Cimalando 2020-12-09 17:08:27 +01:00
parent a848d8e94e
commit cc24203f2d

View file

@ -132,7 +132,7 @@ tresult PLUGIN_API SfizzVstProcessor::setState(IBStream* stream)
if (!fileScan.locateRealFile(pathOrig, pathFound))
fprintf(stderr, "[Sfizz] file not found: %s\n", pathOrig.filename().u8string().c_str());
else {
fprintf(stderr, "[Sfizz] file found: %s\n", pathFound.filename().u8string().c_str());
fprintf(stderr, "[Sfizz] file found: %s\n", pathFound.u8string().c_str());
*statePath = pathFound.u8string();
}
}