aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/Include/alu.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2017-04-08 14:29:08 -0700
committerChris Robinson <[email protected]>2017-04-08 14:29:08 -0700
commitaef774a7a03485a645edc79ea292abe8c634b8e9 (patch)
tree4bc9a436fa578c3801cb6e5bbd42eb829a98da7f /OpenAL32/Include/alu.h
parent319d0971986309d7882a9be42a5aef7dc612945d (diff)
Handle the source offset fraction as an ALsizei
Diffstat (limited to 'OpenAL32/Include/alu.h')
-rw-r--r--OpenAL32/Include/alu.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenAL32/Include/alu.h b/OpenAL32/Include/alu.h
index 7a29915f..4d0ee196 100644
--- a/OpenAL32/Include/alu.h
+++ b/OpenAL32/Include/alu.h
@@ -173,7 +173,7 @@ typedef struct ALvoice {
* sample.
*/
ATOMIC(ALuint) position;
- ATOMIC(ALuint) position_fraction;
+ ATOMIC(ALsizei) position_fraction;
/**
* Number of channels and bytes-per-sample for the attached source's
@@ -211,7 +211,7 @@ typedef struct ALvoice {
typedef const ALfloat* (*ResamplerFunc)(const InterpState *state,
- const ALfloat *restrict src, ALuint frac, ALint increment,
+ const ALfloat *restrict src, ALsizei frac, ALint increment,
ALfloat *restrict dst, ALsizei dstlen
);