diff --git a/src/xenia/kernel/xam/profile_manager.cc b/src/xenia/kernel/xam/profile_manager.cc index 336b0b0a1..1a08371b9 100644 --- a/src/xenia/kernel/xam/profile_manager.cc +++ b/src/xenia/kernel/xam/profile_manager.cc @@ -515,7 +515,7 @@ bool ProfileManager::CreateAccount(const uint64_t xuid, bool ProfileManager::UpdateAccount(const uint64_t xuid, X_XAMACCOUNTINFO* account) { const std::string guest_path = - xe::string_util::to_hex_string(xuid) + ":\\Account"; + fmt::format(kDefaultMountFormat, xuid) + ":\\Account"; xe::vfs::File* output_file; xe::vfs::FileAction action = {};