[Kernel] Fixed Xbox Live disconnected error code

This commit is contained in:
Adrian
2025-12-04 20:13:15 +00:00
committed by Radosław Gliński
parent 1d410f0e76
commit f85f4c3ca1

View File

@@ -919,8 +919,9 @@ void KernelState::RegisterNotifyListener(XNotifyListener* listener) {
} }
if (!has_notified_live_startup_ && listener->mask() & kXNotifyLive) { if (!has_notified_live_startup_ && listener->mask() & kXNotifyLive) {
has_notified_live_startup_ = true; has_notified_live_startup_ = true;
// X_ONLINE_S_LOGON_DISCONNECTED
listener->EnqueueNotification(kXNotificationLiveConnectionChanged, listener->EnqueueNotification(kXNotificationLiveConnectionChanged,
0x80151802L); 0x001510F1L);
listener->EnqueueNotification(kXNotificationLiveLinkStateChanged, 0); listener->EnqueueNotification(kXNotificationLiveLinkStateChanged, 0);
} }
} }