Skip to content

Commit

Permalink
webp: remove left-over debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
madebr committed Jan 3, 2025
1 parent 6e92493 commit 1ca9bd8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/IMG_webp.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,10 @@ static bool IMG_InitWEBP(void)
if (lib.loaded == 0) {
#if defined(LOAD_WEBP_DYNAMIC) && defined(LOAD_WEBPDEMUX_DYNAMIC)
lib.handle_libwebpdemux = SDL_LoadObject(LOAD_WEBPDEMUX_DYNAMIC);
SDL_Log("SDL_LoadObject(\"" LOAD_WEBPDEMUX_DYNAMIC "\") -> %p", lib.handle_libwebpdemux);
if (lib.handle_libwebpdemux == NULL) {
return false;
}
lib.handle_libwebp = SDL_LoadObject(LOAD_WEBP_DYNAMIC);
SDL_Log("SDL_LoadObject(\"" LOAD_WEBPDEMUX_DYNAMIC "\") -> %p", lib.handle_libwebp);
if (lib.handle_libwebp == NULL) {
return false;
}
Expand Down

0 comments on commit 1ca9bd8

Please sign in to comment.