소스 검색

dsp: Removed debug logging

Ryan C. Gordon 2 년 전
부모
커밋
a2b488359e
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      src/audio/dsp/SDL_dspaudio.c

+ 0 - 2
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! */
         }
     }