Skip to content

Commit de28a50

Browse files
committed
Fix build
1 parent d3fb090 commit de28a50

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/IMG_anim_decoder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct IMG_AnimationDecoder
2929
int timebase_numerator;
3030
int timebase_denominator;
3131

32-
bool (*GetNextFrame)(IMG_AnimationDecoder *decoder, SDL_Surface** frame, Sint64* pts);
32+
bool (*GetNextFrame)(IMG_AnimationDecoder *decoder, SDL_Surface** frame, Uint64* pts);
3333
bool (*Reset)(IMG_AnimationDecoder *decoder);
3434
bool (*Close)(IMG_AnimationDecoder *decoder);
3535

src/IMG_avif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ static bool IMG_AnimationDecoderReset_Internal(IMG_AnimationDecoder *decoder)
878878
return true;
879879
}
880880

881-
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Sint64 *pts)
881+
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Uint64 *pts)
882882
{
883883
*pts = 0;
884884
*frame = NULL;

src/IMG_gif.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ static bool IMG_AnimationDecoderReset_Internal(IMG_AnimationDecoder* decoder)
570570
return true;
571571
}
572572

573-
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Sint64 *pts)
573+
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Uint64 *pts)
574574
{
575575
*pts = 0;
576576
*frame = NULL;

src/IMG_libpng.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1142,7 +1142,7 @@ static bool IMG_AnimationDecoderReset_Internal(IMG_AnimationDecoder* decoder)
11421142
return true;
11431143
}
11441144

1145-
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Sint64 *pts)
1145+
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Uint64 *pts)
11461146
{
11471147
*pts = 0;
11481148
*frame = NULL;

src/IMG_webp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ static bool IMG_AnimationDecoderReset_Internal(IMG_AnimationDecoder *decoder)
406406
return true;
407407
}
408408

409-
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Sint64 *pts)
409+
static bool IMG_AnimationDecoderGetNextFrame_Internal(IMG_AnimationDecoder *decoder, SDL_Surface **frame, Uint64 *pts)
410410
{
411411
*pts = 0;
412412
*frame = NULL;

0 commit comments

Comments
 (0)