From 4ecb95c6ad31664486b564c46bfc9505dafe888b Mon Sep 17 00:00:00 2001 From: Ben Vanik Date: Thu, 30 Oct 2014 20:50:18 -0700 Subject: [PATCH] Over-notifying signin seems to make some games mad. --- src/xenia/kernel/xam_user.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/xenia/kernel/xam_user.cc b/src/xenia/kernel/xam_user.cc index 027d16f63..9447ba5c3 100644 --- a/src/xenia/kernel/xam_user.cc +++ b/src/xenia/kernel/xam_user.cc @@ -50,14 +50,8 @@ SHIM_CALL XamUserGetSigninState_shim(PPCContext* ppc_state, const auto& user_profile = state->user_profile(); auto signin_state = user_profile->signin_state(); SHIM_SET_RETURN_64(signin_state); - - // Notify we exist, just for fun. - state->BroadcastNotification(0x0000000A, signin_state ? 1 : 0); } else { SHIM_SET_RETURN_64(0); - - // Notify no users. - state->BroadcastNotification(0x0000000A, 0); } }