commit fcfa42a4eac92284e6e87330947b23bb92383e89
parent 3774b3384972efc0023f1a05080773119440a38f
Author: Mike Oliphant <[email protected]>
Date: Sun, 16 Apr 2023 19:37:18 -0700
Fix loading models with special characters in the path (#197)
* Added "Supported Platforms" to readme
* Fixed macOS capitalization
* Fixed loading of models with utf8 characters in the path
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/NeuralAmpModeler/NeuralAmpModeler.cpp b/NeuralAmpModeler/NeuralAmpModeler.cpp
@@ -701,7 +701,7 @@ std::string NeuralAmpModeler::_GetNAM(const WDL_String& modelPath)
WDL_String previousNAMPath = this->mNAMPath;
try
{
- auto dspPath = std::filesystem::path(modelPath.Get());
+ auto dspPath = std::filesystem::u8path(modelPath.Get());
mStagedNAM = get_dsp(dspPath);
this->_SetModelMsg(modelPath);
this->mNAMPath = modelPath;