1
0
mirror of synced 2024-11-12 10:10:53 +01:00

fix: Compile issue

This commit is contained in:
WerWolv 2022-08-01 15:06:17 +02:00
parent e194fcc9d4
commit a4c377dc08

View File

@ -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";