diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2020-04-08 10:15:43 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2020-04-08 10:15:43 -0700 |
commit | d67cba99bd97d42e7e52c6dfd7a08c288b1539c0 (patch) | |
tree | 014425832a37173da8d9c3b2377526ce41d58d36 /alc/panning.cpp | |
parent | 8a5153ce0dee072c283b04ff5a61faa764f81743 (diff) |
Clean up some more unnecessary uses of AL types
Diffstat (limited to 'alc/panning.cpp')
-rw-r--r-- | alc/panning.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alc/panning.cpp b/alc/panning.cpp index 10aa9138..7dae8879 100644 --- a/alc/panning.cpp +++ b/alc/panning.cpp @@ -682,7 +682,8 @@ void InitUhjPanning(ALCdevice *device) } // namespace -void aluInitRenderer(ALCdevice *device, ALint hrtf_id, HrtfRequestMode hrtf_appreq, HrtfRequestMode hrtf_userreq) +void aluInitRenderer(ALCdevice *device, int hrtf_id, HrtfRequestMode hrtf_appreq, + HrtfRequestMode hrtf_userreq) { /* Hold the HRTF the device last used, in case it's used again. */ HrtfStorePtr old_hrtf{std::move(device->mHrtf)}; |