comparison tools/lib64gfx.c @ 1520:2801c76088b5

Remove unused variable.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 11 May 2018 23:12:55 +0300
parents 19b5013ff190
children b86a0aee25fa
comparison
equal deleted inserted replaced
1519:19b5013ff190 1520:2801c76088b5
364 } 364 }
365 365
366 366
367 int dmEncodeGenericRLE(DMGrowBuf *dst, const Uint8 *src, const Uint8 *srcEnd, const DMCompParams *cfg) 367 int dmEncodeGenericRLE(DMGrowBuf *dst, const Uint8 *src, const Uint8 *srcEnd, const DMCompParams *cfg)
368 { 368 {
369 int res;
370
371 // Perform RLE encoding 369 // Perform RLE encoding
372 int count = 0, prev = -1; 370 int count = 0, prev = -1;
373 while (src < srcEnd) 371 while (src < srcEnd)
374 { 372 {
375 Uint8 data = *src++; 373 Uint8 data = *src++;