Merge pull request #1316 from chris-hawley/master

[Base] Remove hacky fix for missing codecvt on linux.
This commit is contained in:
Rick Gibbed
2019-05-04 11:40:33 -05:00
committed by GitHub
3 changed files with 54 additions and 10 deletions

View File

@@ -154,7 +154,7 @@ int xenia_main(const std::vector<std::wstring>& args) {
#if defined(XE_PLATFORM_WIN32)
content_root = xe::join_paths(content_root, L"Xenia");
#elif defined(XE_PLATFORM_LINUX)
content_root = xe::join_paths(content_root, L".xenia");
content_root = xe::join_paths(content_root, L"Xenia");
#else
#warning Unhandled platform for content root.
content_root = xe::join_paths(content_root, L"Xenia");