mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-22 00:06:59 +02:00
Fix an unaligned access error.
Public issue https://github.com/mackron/miniaudio/issues/499
This commit is contained in:
+1
-1
@@ -49211,7 +49211,7 @@ static ma_result ma_linear_resampler_get_heap_layout(const ma_linear_resampler_c
|
||||
}
|
||||
|
||||
/* LPF */
|
||||
pHeapLayout->lpfOffset = pHeapLayout->sizeInBytes;
|
||||
pHeapLayout->lpfOffset = ma_align_64(pHeapLayout->sizeInBytes);
|
||||
{
|
||||
ma_result result;
|
||||
size_t lpfHeapSizeInBytes;
|
||||
|
||||
Reference in New Issue
Block a user