2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 23:07:42 +00:00

Windows fixes

This commit is contained in:
Jack Andersen
2017-11-13 17:34:05 -10:00
parent 67a0fff04d
commit b41b21cb4b
7 changed files with 16 additions and 15 deletions

View File

@@ -23,7 +23,8 @@ FileStoreManager::FileStoreManager(SystemStringView domain)
path += _S("/.heclrun");
hecl::MakeDir(path.c_str());
path += _S('/') + domain;
path += _S('/');
path += domain.data();
hecl::MakeDir(path.c_str());
m_storeRoot = path;