Commit 725ce22b authored by David Reid's avatar David Reid

Fix compilation errors on BSD platforms.

parent c287fd48
......@@ -20299,7 +20299,7 @@ ma_result ma_device_main_loop__sndio(ma_device* pDevice)
break;
}
result = ma_device_write__alsa(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
result = ma_device_write__sndio(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
if (result != MA_SUCCESS) {
exitLoop = MA_TRUE;
break;
......@@ -21254,7 +21254,7 @@ ma_result ma_device_main_loop__audio4(ma_device* pDevice)
break;
}
result = ma_device_write__alsa(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
result = ma_device_write__audio4(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
if (result != MA_SUCCESS) {
exitLoop = MA_TRUE;
break;
......@@ -21966,7 +21966,7 @@ ma_result ma_device_main_loop__oss(ma_device* pDevice)
break;
}
result = ma_device_write__alsa(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
result = ma_device_write__oss(pDevice, playbackDeviceData, playbackDeviceFramesCount, NULL);
if (result != MA_SUCCESS) {
exitLoop = MA_TRUE;
break;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment