diff options
author | Chris Robinson <[email protected]> | 2018-11-22 06:59:32 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-11-22 06:59:32 -0800 |
commit | ab6db9a589ac5ad8daa498e9fedb4de66cbb1948 (patch) | |
tree | fc6e8749da635aa00ed8cbf199239b28ec5fff39 /Alc/alc.cpp | |
parent | 9d73e03aaa6d51d6b787b0d576760f782fc3394f (diff) |
Clean up some unnecessary specifiers
Diffstat (limited to 'Alc/alc.cpp')
-rw-r--r-- | Alc/alc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Alc/alc.cpp b/Alc/alc.cpp index 4c724fd6..10b4c007 100644 --- a/Alc/alc.cpp +++ b/Alc/alc.cpp @@ -2418,8 +2418,8 @@ ALCdevice_struct::~ALCdevice_struct() if(HrtfHandle) Hrtf_DecRef(HrtfHandle); HrtfHandle = nullptr; - al_free(Hrtf); - Hrtf = nullptr; + al_free(mHrtfState); + mHrtfState = nullptr; } |