diff options
Diffstat (limited to 'OpenAL32')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 | ||||
-rw-r--r-- | OpenAL32/alSource.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index ef8b8cb7..303a990b 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -74,6 +74,8 @@ typedef unsigned long long ALuint64; typedef ptrdiff_t ALintptrEXT; typedef ptrdiff_t ALsizeiptrEXT; +#define MAKEU64(x,y) (((ALuint64)(x)<<32)|(ALuint64)(y)) + #ifdef HAVE_GCC_FORMAT #define PRINTF_STYLE(x, y) __attribute__((format(printf, (x), (y)))) #else diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c index 8ff8a3b1..0192b5ef 100644 --- a/OpenAL32/alSource.c +++ b/OpenAL32/alSource.c @@ -1828,7 +1828,7 @@ static ALint64 GetSourceOffset(ALsource *Source) BufferList = BufferList->next; } - return (ALint64)minu64(readPos, ((ALuint64)0x7fffffff<<32)|0xffffffff); + return (ALint64)minu64(readPos, MAKEU64(0x7fffffff,0xffffffff)); } /* GetSourceOffsets |