1
0
mirror of synced 2024-09-25 12:08:26 +02:00

sys: More Linux and macOS build fixes

This commit is contained in:
WerWolv 2022-03-04 14:00:02 +01:00
parent 3b7a928313
commit 6a517feda3
2 changed files with 2 additions and 2 deletions

View File

@ -232,7 +232,7 @@ namespace hex::fs {
dir = dir / "imhex";
if (!exePath.empty())
dataDirs.emplace(dataDirs.begin(), fs::path(exePath.data()).parent_path());
dataDirs.emplace(dataDirs.begin(), std::fs::path(exePath.data()).parent_path());
switch (path) {
case ImHexPath::Patterns:

View File

@ -1,5 +1,5 @@
#if defined(OS_MACOS)
#include <hex/helpers/paths_mac.h>
#include <hex/helpers/fs_macos.h>
#include <Foundation/Foundation.h>