diff options
author | Chris Robinson <[email protected]> | 2013-10-06 04:21:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-06 04:21:03 -0700 |
commit | 9ee3d01f6ed5748ef88a4b5992cd6be48afaf3b8 (patch) | |
tree | 636e44799fb0e8db0403397d2d872b8d0b09bfd8 /OpenAL32/alSource.c | |
parent | 69e64e1ed2afad1743fd438bf386e4e98631ce9d (diff) |
Use a simpler U64 macro to make 64-bit constants
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r-- | OpenAL32/alSource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 1dd9716c..0e84ba8c 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -2430,7 +2430,7 @@ static ALint64 GetSourceOffset(const ALsource *Source) BufferList = BufferList->next; } - return (ALint64)minu64(readPos, MAKEU64(0x7fffffff,0xffffffff)); + return (ALint64)minu64(readPos, U64(0x7fffffffffffffff)); } /* GetSourceSecOffset |