diff --git a/lib/libimhex/source/helpers/fs.cpp b/lib/libimhex/source/helpers/fs.cpp index 64f2ae6f6..19906d737 100644 --- a/lib/libimhex/source/helpers/fs.cpp +++ b/lib/libimhex/source/helpers/fs.cpp @@ -167,7 +167,10 @@ namespace hex::fs { }); break; case ImHexPath::Config: - return { appDataDir / "imhex" / "config" }; + std::transform(paths.begin(), paths.end(), std::back_inserter(result), [](auto &path) { + return path / "config"; + }); + break; case ImHexPath::Resources: std::transform(paths.begin(), paths.end(), std::back_inserter(result), [](auto &path) { return path / "resources";