From 4d047e2bc166e8155dd9714e53efda09def2b6ef Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 7 Jan 2019 04:06:40 -0800 Subject: Use user-defined literals for 64-bit literals --- Alc/alc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Alc/alc.cpp') diff --git a/Alc/alc.cpp b/Alc/alc.cpp index 0c3e56c1..e44b42c8 100644 --- a/Alc/alc.cpp +++ b/Alc/alc.cpp @@ -2102,7 +2102,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList) ALsizei idx = CTZ64(usemask); ALsource *source = sublist.Sources + idx; - usemask &= ~(U64(1) << idx); + usemask &= ~(1_u64 << idx); if(old_sends != device->NumAuxSends) { -- cgit v1.2.3