Commit bfb1f07d authored by David Reid's avatar David Reid

AAudio: Call the onStop callback when the device is stopped.

parent 2c2c4c64
......@@ -18254,6 +18254,11 @@ mal_result mal_device__start_backend__aaudio(mal_device* pDevice)
}
}
mal_stop_proc onStop = pDevice->onStop;
if (onStop) {
onStop(pDevice);
}
return MAL_SUCCESS;
}
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