Fix compilation with VS2015 Update 2 CTP
This commit is contained in:
parent
b696c645f5
commit
205f64eb8b
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue