diff options
-rw-r--r-- | OpenAL32/alBuffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/alBuffer.c b/OpenAL32/alBuffer.c index cd1886df..cbc10be5 100644 --- a/OpenAL32/alBuffer.c +++ b/OpenAL32/alBuffer.c @@ -285,7 +285,7 @@ ALAPI ALvoid ALAPIENTRY alBufferData(ALuint buffer,ALenum format,const ALvoid *d return; } - offset = (ALintptrEXT)data; + offset = (const ALubyte*)data - (ALubyte*)NULL; data = Context->SampleSource->data + offset; } @@ -534,7 +534,7 @@ ALvoid ALAPIENTRY alBufferSubDataEXT(ALuint buffer,ALenum format,const ALvoid *d return; } - offset = (ALintptrEXT)data; + offset = (const ALubyte*)data - (ALubyte*)NULL; data = Context->SampleSource->data + offset; } |