1
0
mirror of synced 2024-11-12 02:00:52 +01:00

fix: Build issues on Linux due to unused parameter

This commit is contained in:
WerWolv 2024-06-22 12:02:19 +02:00
parent 1b383bdcf1
commit 24621e6612

View File

@ -79,6 +79,7 @@ namespace hex::paths {
#elif defined(OS_MACOS)
return getDataPaths(includeSystemFolders);
#elif defined(OS_LINUX) || defined(OS_WEB)
hex::unused(includeSystemFolders);
return {xdg::ConfigHomeDir() / "imhex"};
#endif
}