- commented out diagnostic messages.

This commit is contained in:
Christoph Oelckers 2020-03-01 17:22:31 +01:00
parent edf513a789
commit cf662de165
1 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ int ReadFrame(FileReader &fp)
if (lSoundBytesRead - lSoundBytesUsed >= kSampleRate) if (lSoundBytesRead - lSoundBytesUsed >= kSampleRate)
{ {
DebugOut("SOUND BUF FULL!\n"); //DebugOut("ReadFrame() - Sound buffer full\n");
fp.Seek(nSize, FileReader::SeekCur); fp.Seek(nSize, FileReader::SeekCur);
} }
else else
@ -130,7 +130,7 @@ int ReadFrame(FileReader &fp)
} }
case kFrameImage: case kFrameImage:
{ {
Printf("Reading image block size %d...\n", nSize); //Printf("Reading image block size %d...\n", nSize);
if (nSize == 0) { if (nSize == 0) {
continue; continue;
} }