JACK: Fix a copy/paste error.

This commit is contained in:
David Reid
2025-07-18 15:18:58 +10:00
parent 59333e9721
commit 0b5430572d
+1 -1
View File
@@ -33750,7 +33750,7 @@ static ma_result ma_device_init__jack(ma_device* pDevice, const void* pDeviceBac
}
/* Need to count the number of ports first so we can allocate some memory. */
while (ppPorts[pDescriptorPlayback->channels] != NULL && (desiredChannelCount == 0 || desiredChannelCount > pDescriptorCapture->channels)) {
while (ppPorts[pDescriptorPlayback->channels] != NULL && (desiredChannelCount == 0 || desiredChannelCount > pDescriptorPlayback->channels)) {
pDescriptorPlayback->channels += 1;
}