aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/hrtf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Alc/hrtf.cpp')
-rw-r--r--Alc/hrtf.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/Alc/hrtf.cpp b/Alc/hrtf.cpp
index 9b645b05..7ca2e3c7 100644
--- a/Alc/hrtf.cpp
+++ b/Alc/hrtf.cpp
@@ -1286,18 +1286,3 @@ void Hrtf_DecRef(struct Hrtf *hrtf)
}
}
}
-
-
-void FreeHrtfs(void)
-{
- struct HrtfEntry *Hrtf{LoadedHrtfs};
- LoadedHrtfs = nullptr;
-
- while(Hrtf != nullptr)
- {
- struct HrtfEntry *next{Hrtf->next};
- al_free(Hrtf->handle);
- al_free(Hrtf);
- Hrtf = next;
- }
-}