[XAM/User] Added offline account mask to type

This commit is contained in:
Gliniak 2020-11-25 21:55:42 +01:00
parent 6bf32307c7
commit 966b465cb3
1 changed files with 1 additions and 1 deletions

View File

@ -314,7 +314,7 @@ class UserProfile {
uint64_t xuid() const { return account_.xuid_online; }
std::string name() const { return to_utf8(account_.GetGamertagString()); }
uint32_t signin_state() const { return 1; }
uint32_t type() const { return 2; /* online profile? */ }
uint32_t type() const { return 1 | 2; /* online profile? */ }
void AddSetting(std::unique_ptr<Setting> setting);
Setting* GetSetting(uint32_t setting_id);