2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-07-08 22:05:53 +00:00

Compile fix

This commit is contained in:
Phillip Stephens 2020-03-03 16:52:57 -08:00
parent 2149af68fa
commit 3d0451a496

View File

@ -47,7 +47,7 @@ FileStoreManager::FileStoreManager(SystemStringView domain) : m_domain(domain) {
if (!home) if (!home)
Log.report(logvisor::Fatal, fmt("unable to locate $HOME for file store")); Log.report(logvisor::Fatal, fmt("unable to locate $HOME for file store"));
path = home; path = home;
path += "/.local/share" path += "/.local/share";
} }
path += "/hecl"; path += "/hecl";
if (mkdir(path.c_str(), 0755) && errno != EEXIST) if (mkdir(path.c_str(), 0755) && errno != EEXIST)