From 126cd0e5b5508c2f5317e81120fd517f3615174d Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 30 Jan 2019 09:37:10 -0500 Subject: [PATCH] Fix submix DestinationChannels assert --- src/FAudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FAudio.c b/src/FAudio.c index a9286a5ac..50d11b367 100644 --- a/src/FAudio.c +++ b/src/FAudio.c @@ -1710,7 +1710,7 @@ void FAudioVoice_GetOutputMatrix( } else { - FAudio_assert(DestinationChannels == voice->mix.inputChannels); + FAudio_assert(DestinationChannels == pDestinationVoice->mix.inputChannels); } /* Get the matrix values, finally */