Fix AudioServer Crash when bus count equals 0

This commit is contained in:
Maganty Rushyendra 2021-04-24 11:06:28 -04:00
parent db90ab86b9
commit ccc375f163

View File

@ -246,6 +246,7 @@ void AudioServer::_driver_process(int p_frames, int32_t *p_buffer) {
init_channels_and_buffers(); init_channels_and_buffers();
} }
ERR_FAIL_COND_MSG(buses.is_empty() && todo, "AudioServer bus count is less than 1.");
while (todo) { while (todo) {
if (to_mix == 0) { if (to_mix == 0) {
_mix_step(); _mix_step();