diff --git a/src/xenia/kernel/kernel_state.cc b/src/xenia/kernel/kernel_state.cc index 5454efd25..f2f87151b 100644 --- a/src/xenia/kernel/kernel_state.cc +++ b/src/xenia/kernel/kernel_state.cc @@ -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) {