diff --git a/base/renderConfig.cpp b/base/renderConfig.cpp index a523462..f643554 100644 --- a/base/renderConfig.cpp +++ b/base/renderConfig.cpp @@ -149,7 +149,14 @@ std::string PlumageConfig::PlumageConfiguration::setFilePathFromToml(toml::value { std::filesystem::path assetPath = getAssetPath(); assetPath += filesystemConfigFilePath; - return assetPath.generic_string(); + if (std::filesystem::exists(assetPath)) + { + return assetPath.generic_string(); + } + else + { + + } } }