From f775a1fea73af07d29d619e6258af43bf1f7746d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Tue, 11 Apr 2006 21:15:41 +0000 Subject: [PATCH] forgot to remove debug output git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17100 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/translators/bmp/BMPTranslator.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/add-ons/translators/bmp/BMPTranslator.cpp b/src/add-ons/translators/bmp/BMPTranslator.cpp index fdbbf7d1e7..a0cf144612 100644 --- a/src/add-ons/translators/bmp/BMPTranslator.cpp +++ b/src/add-ons/translators/bmp/BMPTranslator.cpp @@ -1190,8 +1190,6 @@ translate_from_bmpnpal_to_bits(BPositionIO *inSource, int32 bmpBytesPerPixel = msheader.bitsperpixel / 8; int32 bmpRowBytes = get_rowbytes(msheader.width, msheader.bitsperpixel); -printf("bitsRowBytes: %ld, bmpBytesPerPixel: %ld, bmpRowBytes: %ld\n", - bitsRowBytes, bmpBytesPerPixel, bmpRowBytes); // Setup outDestination so that it can be written to // from the end of the file to the beginning instead of @@ -1226,7 +1224,6 @@ printf("bitsRowBytes: %ld, bmpBytesPerPixel: %ld, bmpRowBytes: %ld\n", status_t ret = B_OK; -printf("height: %ld\n", msheader.height); for (uint32 y = 0; y < msheader.height; y++) { ssize_t read = inSource->Read(bmpRowData, bmpRowBytes); if (read != bmpRowBytes) { @@ -1244,7 +1241,6 @@ printf("height: %ld\n", msheader.height); uint8 *pBitsPixel = bitsRowData; uint8 *pBmpPixel = bmpRowData; for (uint32 i = 0; i < msheader.width; i++) { -printf("24 bits\n"); pBitsPixel[0] = pBmpPixel[0]; pBitsPixel[1] = pBmpPixel[1]; pBitsPixel[2] = pBmpPixel[2];