mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
Fix warning in jaudiolib due to void ptr arith.
git-svn-id: https://svn.eduke32.com/eduke32@3140 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
a1b82232fd
commit
be310c4d00
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ static void fillData(int32_t chan, void *ptr, int32_t remaining, void *udata)
|
||||||
|
|
||||||
memcpy(ptr, sptr, len);
|
memcpy(ptr, sptr, len);
|
||||||
|
|
||||||
ptr += len;
|
ptr = (void *)((uintptr_t)(ptr) + len);
|
||||||
MixBufferUsed += len;
|
MixBufferUsed += len;
|
||||||
remaining -= len;
|
remaining -= len;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue