[KERNEL/KERNEL_STATE] - Startup kXNotifyLive

- Notify game user is not connect to live
This commit is contained in:
The-Little-Wolf 2025-06-17 21:08:42 -07:00 committed by Radosław Gliński
parent f65f044ee5
commit f91be22742

View file

@ -887,6 +887,11 @@ void KernelState::RegisterNotifyListener(XNotifyListener* listener) {
listener->EnqueueNotification(kXNotificationDvdDriveTrayStateChanged,
X_DVD_DISC_STATE::XBOX_360_GAME_DISC);
}
if (listener->mask() & kXNotifyLive) {
listener->EnqueueNotification(kXNotificationLiveConnectionChanged,
0x80151802L);
listener->EnqueueNotification(kXNotificationLiveLinkStateChanged, 0);
}
}
void KernelState::UnregisterNotifyListener(XNotifyListener* listener) {