BFileGameSound: remove annoying printf.

Change-Id: If12c4031e7ec245a79cca51fe1304f6cc21f28e4
Reviewed-on: https://review.haiku-os.org/c/1415
Reviewed-by: Stefano Ceccherini <[email protected]>
This commit is contained in:
Adrien Destugues
2019-04-28 07:32:42 +00:00
committed by Adrien Destugues
parent 35fa85dba5
commit 088cebb96f
-2
View File
@@ -239,8 +239,6 @@ BFileGameSound::FillBuffer(void* inBuffer, size_t inByteCount)
while (inByteCount > 0 && !fPaused) {
if (!fPaused || fPausing) {
printf("mixout %ld, inByteCount %ld, decin %ld, BufferSize %ld\n",
out_offset, inByteCount, fPlayPosition, fBufferSize);
if (fPlayPosition == 0 || fPlayPosition >= fBufferSize) {
Load();
}