Fix compilation with VS2015 Update 2 CTP

This commit is contained in:
sephiroth99 2016-02-11 23:47:11 -05:00
parent b696c645f5
commit 205f64eb8b
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}