2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:47: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

@@ -87,7 +87,7 @@ void CVarManager::deserialize(CVar* cvar)
CVarContainer container;
#if _WIN32
hecl::SystemString filename = m_store.getStoreRoot() + _S('/') + com_configfile->toWideLiteral();
hecl::SystemString filename = hecl::SystemString(m_store.getStoreRoot()) + _S('/') + com_configfile->toWideLiteral();
#else
hecl::SystemString filename = hecl::SystemString(m_store.getStoreRoot()) + _S('/') + com_configfile->toLiteral();
#endif