Revert "[Kernel] Initial XMP Notifications"

This reverts commit 0c6dc9b628.
This commit is contained in:
Gliniak
2026-07-30 20:02:22 +02:00
parent e4f28f6984
commit 7010c86fb1
2 changed files with 0 additions and 8 deletions

View File

@@ -1034,13 +1034,6 @@ void KernelState::RegisterNotifyListener(XNotifyListener* listener) {
0x001510F1L);
listener->EnqueueNotification(kXNotificationLiveLinkStateChanged, 0);
}
if (!has_notified_xmp_startup_ && listener->mask() & kXNotifyXmp) {
has_notified_xmp_startup_ = true;
listener->EnqueueNotification(kXNotificationXmpStateChanged, 0);
listener->EnqueueNotification(kXNotificationXmpPlaybackControllerChanged,
1);
}
}
void KernelState::UnregisterNotifyListener(XNotifyListener* listener) {

View File

@@ -366,7 +366,6 @@ class KernelState {
std::vector<object_ref<XNotifyListener>> notify_listeners_;
bool has_notified_startup_ = false;
bool has_notified_live_startup_ = false;
bool has_notified_xmp_startup_ = false;
object_ref<UserModule> executable_module_;
std::vector<object_ref<KernelModule>> kernel_modules_;