From cc24203f2d4f4d4bc5771639380d5029c88f4628 Mon Sep 17 00:00:00 2001 From: Jean Pierre Cimalando Date: Wed, 9 Dec 2020 17:08:27 +0100 Subject: [PATCH] Log the found file with full path --- vst/SfizzVstProcessor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vst/SfizzVstProcessor.cpp b/vst/SfizzVstProcessor.cpp index 708979eb..674e27b8 100644 --- a/vst/SfizzVstProcessor.cpp +++ b/vst/SfizzVstProcessor.cpp @@ -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(); } }