mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[XAM] Replace constant with named error in GetSubscriptionType
This commit is contained in:
parent
1fd501db01
commit
2fcf8c1163
|
|
@ -717,7 +717,7 @@ dword_result_t XamUserGetSubscriptionType_entry(dword_t user_index,
|
||||||
dword_t unk4, dword_t unk5,
|
dword_t unk4, dword_t unk5,
|
||||||
dword_t unk6) {
|
dword_t unk6) {
|
||||||
if (!unk2 || !unk3 || user_index > 4) {
|
if (!unk2 || !unk3 || user_index > 4) {
|
||||||
return 0x80070057;
|
return X_E_INVALIDARG;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue