https://github.com/libsdl-org/SDL/commit/a2b488359e087f9dcb30c32bb7bfaa3354226930
From a2b488359e087f9dcb30c32bb7bfaa3354226930 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Tue, 4 Jul 2023 19:38:01 -0400
Subject: [PATCH] dsp: Removed debug logging
---
src/audio/dsp/SDL_dspaudio.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/audio/dsp/SDL_dspaudio.c b/src/audio/dsp/SDL_dspaudio.c
index e45df1b04b81..41df8d68f453 100644
--- a/src/audio/dsp/SDL_dspaudio.c
+++ b/src/audio/dsp/SDL_dspaudio.c
@@ -214,10 +214,8 @@ static void DSP_WaitDevice(SDL_AudioDevice *device)
SDL_AudioDeviceDisconnected(device);
return;
} else if (info.bytes < device->buffer_size) {
-//SDL_Log("DSP NEED=%d HAVE=%d", (int) device->buffer_size, (int) info.bytes);
SDL_Delay(10);
} else {
-//SDL_Log("DSP NEED=%d HAVE=%d", (int) device->buffer_size, (int) info.bytes);
break; /* ready to go! */
}
}