[App] Get absolute path of content root in all cases.

This commit is contained in:
gibbed 2018-11-22 17:40:22 -06:00
parent 69463033b1
commit 00261b9ca0
1 changed files with 1 additions and 2 deletions

View File

@ -161,9 +161,8 @@ int xenia_main(const std::vector<std::wstring>& args) {
#endif
content_root = xe::join_paths(content_root, L"content");
}
content_root = xe::to_absolute_path(content_root);
}
content_root = xe::to_absolute_path(content_root);
// Create the emulator but don't initialize so we can setup the window.
auto emulator = std::make_unique<Emulator>(L"", content_root);