aboutsummaryrefslogtreecommitdiffstats
path: root/alc/mastering.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2019-09-11 05:53:10 -0700
committerChris Robinson <[email protected]>2019-09-11 05:53:10 -0700
commit388928f3aa1ecf1a4f930c27687e7d0d4a9fd824 (patch)
tree082cbddc17fd07325935bf57d087c31d9ea24405 /alc/mastering.h
parente4b15aeefcc220a46542c4bb2a2cea033e7954f0 (diff)
Fix some more implicit casts
Diffstat (limited to 'alc/mastering.h')
-rw-r--r--alc/mastering.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/alc/mastering.h b/alc/mastering.h
index 03cd21c0..6c8fc628 100644
--- a/alc/mastering.h
+++ b/alc/mastering.h
@@ -65,7 +65,7 @@ struct Compressor {
~Compressor();
void process(const ALuint SamplesToDo, FloatBufferLine *OutBuffer);
- ALsizei getLookAhead() const noexcept { return mLookAhead; }
+ ALsizei getLookAhead() const noexcept { return static_cast<ALsizei>(mLookAhead); }
DEF_PLACE_NEWDEL()
};