From 205f64eb8b64d0b714a0e879ead77951d63e35ea Mon Sep 17 00:00:00 2001 From: sephiroth99 Date: Thu, 11 Feb 2016 23:47:11 -0500 Subject: [PATCH] Fix compilation with VS2015 Update 2 CTP --- src/xenia/kernel/notify_listener.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/kernel/notify_listener.cc b/src/xenia/kernel/notify_listener.cc index c9bf3eaf1..81cc1d35b 100644 --- a/src/xenia/kernel/notify_listener.cc +++ b/src/xenia/kernel/notify_listener.cc @@ -31,7 +31,7 @@ void NotifyListener::Initialize(uint64_t mask) { void NotifyListener::EnqueueNotification(XNotificationID id, uint32_t data) { // Ignore if the notification doesn't match our mask. - if ((mask_ & uint64_t(1 << (id >> 25))) == 0) { + if ((mask_ & uint64_t(1ULL << (id >> 25))) == 0) { return; }