From e7f326a84ea5a15dd35b23345f9c503009b53e7b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 3 Feb 2025 23:35:08 -0500 Subject: [PATCH] bmp: Removed debug printf call. --- src/video/SDL_bmp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/video/SDL_bmp.c b/src/video/SDL_bmp.c index 2880ba03ef..688086fc43 100644 --- a/src/video/SDL_bmp.c +++ b/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)) {