comparison tools/lib64gfx.c @ 1507:7d012e5acf5c

Oops, left in a debug print.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 11 May 2018 20:28:48 +0300
parents 4fd4e7a00db4
children 7bbf4b41fc33
comparison
equal deleted inserted replaced
1506:4fd4e7a00db4 1507:7d012e5acf5c
368 368
369 369
370 int dmEncodeGenericRLE(DMGrowBuf *dst, const Uint8 *src, const Uint8 *srcEnd, const DMCompParams *cfg) 370 int dmEncodeGenericRLE(DMGrowBuf *dst, const Uint8 *src, const Uint8 *srcEnd, const DMCompParams *cfg)
371 { 371 {
372 int res; 372 int res;
373
374 fprintf(stderr, "encrle: len=%d, rleMarker=%02x, rleMinCount=%d, rleMaxCount=%d, type=%d\n",
375 srcEnd - src, cfg->rleMarker, cfg->rleMinCount, cfg->rleMaxCount, cfg->type);
376 373
377 // Perform RLE encoding 374 // Perform RLE encoding
378 int count = 0, prev; 375 int count = 0, prev;
379 while (src < srcEnd) 376 while (src < srcEnd)
380 { 377 {