From 2cd35e8dd6e09e0e44cb254a616485c789fb33a4 Mon Sep 17 00:00:00 2001 From: Gliniak Date: Fri, 17 Oct 2025 20:24:33 +0200 Subject: [PATCH] [Kernel] Remove sending tray state change notification when game is booted - Games do not expect changing disc on boot it should happen when you're in dashboard --- src/xenia/kernel/kernel_state.cc | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/xenia/kernel/kernel_state.cc b/src/xenia/kernel/kernel_state.cc index 7520e5f9b..20385f22b 100644 --- a/src/xenia/kernel/kernel_state.cc +++ b/src/xenia/kernel/kernel_state.cc @@ -916,9 +916,6 @@ void KernelState::RegisterNotifyListener(XNotifyListener* listener) { // XN_SYS_SIGNINCHANGED x2 listener->EnqueueNotification(kXNotificationSystemSignInChanged, 1); listener->EnqueueNotification(kXNotificationSystemSignInChanged, 1); - - listener->EnqueueNotification(kXNotificationSystemTrayStateChanged, - X_DVD_DISC_STATE::XBOX_360_GAME_DISC); } if (!has_notified_live_startup_ && listener->mask() & kXNotifyLive) { has_notified_live_startup_ = true;