Browse Source

bmp: Removed debug printf call.

Ryan C. Gordon 2 months ago
parent
commit
e7f326a84e
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/video/SDL_bmp.c

+ 0 - 1
src/video/SDL_bmp.c

@@ -115,7 +115,6 @@ static bool readRlePixels(SDL_Surface *surface, SDL_IOStream *src, int isRle8)
                 bits -= pitch; // go to previous
                 break;
             case 1:               // end of bitmap
-printf("SUCCESS!\n");
                 return true; // success!
             case 2:               // delta
                 if (!SDL_ReadU8(src, &ch)) {