From 91ef8e19abf98c70ee603810e626280614dce3df Mon Sep 17 00:00:00 2001 From: David Reid Date: Mon, 17 Jan 2022 18:34:00 +1000 Subject: [PATCH] Fix a copy paste error. --- miniaudio.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miniaudio.h b/miniaudio.h index c25b24a7..a01d8f34 100644 --- a/miniaudio.h +++ b/miniaudio.h @@ -44997,7 +44997,7 @@ static ma_result ma_hpf_get_heap_layout(const ma_hpf_config* pConfig, ma_hpf_hea pHeapLayout->sizeInBytes = 0; - /* LPF 1 */ + /* HPF 1 */ pHeapLayout->hpf1Offset = pHeapLayout->sizeInBytes; for (ihpf1 = 0; ihpf1 < hpf1Count; ihpf1 += 1) { size_t hpf1HeapSizeInBytes; @@ -45011,7 +45011,7 @@ static ma_result ma_hpf_get_heap_layout(const ma_hpf_config* pConfig, ma_hpf_hea pHeapLayout->sizeInBytes += sizeof(ma_hpf1) + hpf1HeapSizeInBytes; } - /* LPF 2*/ + /* HPF 2*/ pHeapLayout->hpf2Offset = pHeapLayout->sizeInBytes; for (ihpf2 = 0; ihpf2 < hpf2Count; ihpf2 += 1) { size_t hpf2HeapSizeInBytes;