diff options
Diffstat (limited to 'alc/mastering.h')
-rw-r--r-- | alc/mastering.h | 2 |
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() }; |