[XAM/User] Added flag for local profile
It should fix games where right now there is no profile found. Example: EA Sports games
This commit is contained in:
parent
c3d48eb2fa
commit
d2cf0167fd
|
@ -202,7 +202,7 @@ class UserProfile {
|
|||
uint64_t xuid() const { return xuid_; }
|
||||
std::string name() const { return name_; }
|
||||
uint32_t signin_state() const { return 1; }
|
||||
uint32_t type() const { return 2; /* online profile? */ }
|
||||
uint32_t type() const { return 1 | 2; /* local | online profile? */ }
|
||||
|
||||
void AddSetting(std::unique_ptr<Setting> setting);
|
||||
Setting* GetSetting(uint32_t setting_id);
|
||||
|
|
Loading…
Reference in New Issue