API CHANGE: Update ma_noise_uninit().

This removes the allocations callback parameter. It is no managed
internally in preparation for some changes to data source management.
This commit is contained in:
David Reid
2026-04-28 17:23:16 +10:00
parent 52f22d6597
commit b5732f515a
3 changed files with 9 additions and 5 deletions
+1 -1
View File
@@ -839,7 +839,7 @@ done:
ma_waveform_uninit(&g_State.waveform);
}
if (g_State.sourceType == source_type_noise) {
ma_noise_uninit(&g_State.noise, NULL);
ma_noise_uninit(&g_State.noise);
}
if (g_State.hasEncoder) {
ma_encoder_uninit(&g_State.encoder);