From d65b23f49f0d9e2e5e8753574366da0d25515385 Mon Sep 17 00:00:00 2001 From: Rosalie Wanders Date: Tue, 23 Jan 2024 18:27:05 +0100 Subject: [PATCH] RMG-Core: fix windows build --- Source/RMG-Core/Plugins.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/RMG-Core/Plugins.cpp b/Source/RMG-Core/Plugins.cpp index d7ec977a..3f2bcd5e 100644 --- a/Source/RMG-Core/Plugins.cpp +++ b/Source/RMG-Core/Plugins.cpp @@ -153,7 +153,7 @@ std::filesystem::path get_plugin_path(CorePluginType type, std::string settingsV // if the full plugin path is in the settings value, // we know it's the old type - if (settingsValue.find(pluginPath) != std::string::npos) + if (settingsValue.find(pluginPath.string()) != std::string::npos) { return settingsValue; }