aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alcmain.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-08-25 17:54:36 -0700
committerChris Robinson <[email protected]>2019-08-25 17:54:36 -0700
commit164626a7be1cd0a9b92d34b9bb7f5c891fe57fae (patch)
tree993608d71dc619472d017775b9f25e3c601f7222 /alc/alcmain.h
parentb93098f7df73b877d40303ce3d9e4d9776a9c245 (diff)
Pass unsigned sample count to aluMixData
Diffstat (limited to 'alc/alcmain.h')
-rw-r--r--alc/alcmain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/alcmain.h b/alc/alcmain.h
index 6b6a8de3..556268ce 100644
--- a/alc/alcmain.h
+++ b/alc/alcmain.h
@@ -113,7 +113,7 @@ class DistanceComp {
public:
struct DistData {
ALfloat Gain{1.0f};
- ALsizei Length{0}; /* Valid range is [0...MAX_DELAY_LENGTH). */
+ ALuint Length{0u}; /* Valid range is [0...MAX_DELAY_LENGTH). */
ALfloat *Buffer{nullptr};
};