diff options
author | Chris Robinson <[email protected]> | 2019-07-16 16:19:51 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-07-16 16:19:51 -0700 |
commit | 101e6412887c539b7409fdb016012900c18f5daf (patch) | |
tree | 12781bb19db6c463abb28f0b7b2589d25806480a | |
parent | ffc7258cbcce7db603dcc5978020f042d3f7ebf7 (diff) |
Fix an unused parameter warning
-rw-r--r-- | Alc/effects/vmorpher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/vmorpher.cpp b/Alc/effects/vmorpher.cpp index 72dc6aeb..b6b13f0d 100644 --- a/Alc/effects/vmorpher.cpp +++ b/Alc/effects/vmorpher.cpp @@ -140,7 +140,7 @@ struct VmorpherState final : public EffectState { DEF_NEWDEL(VmorpherState) }; -ALboolean VmorpherState::deviceUpdate(const ALCdevice *device) +ALboolean VmorpherState::deviceUpdate(const ALCdevice* /*device*/) { for(auto &e : mChans) { |