Skip to content

Commit

Permalink
Update servers/audio_server.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: A Thousand Ships <[email protected]>
  • Loading branch information
Meorge and AThousandShips authored Nov 26, 2024
1 parent d3f67c6 commit 0fcb45b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion servers/audio_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ void AudioServer::_driver_process(int p_frames, int32_t *p_buffer) {
// The destination start for data will be the same in all cases.
int32_t *dest = &p_buffer[from_buf * (cs * 2) + (k * 2)];

if (master->channels[k].active && !debug_mute) {
if (!debug_mute && master->channels[k].active) {
const AudioFrame *buf = master->channels[k].buffer.ptr();

for (int j = 0; j < to_copy; j++) {
Expand Down

0 comments on commit 0fcb45b

Please sign in to comment.