Skip to content

Commit

Permalink
Use false where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
slouken committed Sep 18, 2024
1 parent 5479e46 commit 3279516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IMG_avif.c
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ bool IMG_isAVIF(SDL_IOStream *src)
}

start = SDL_TellIO(src);
is_AVIF = 0;
is_AVIF = false;
if (ReadAVIFHeader(src, &data, &size)) {
/* This might be AVIF, do more thorough checks */
if ((IMG_Init(IMG_INIT_AVIF) & IMG_INIT_AVIF) != 0) {
Expand Down

0 comments on commit 3279516

Please sign in to comment.