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