Skip to content

Commit

Permalink
removed webpanimation function load frome SDL2_image for Linux compil…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
epyon committed Aug 12, 2024
1 parent 237df68 commit bcea229
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions libs/vsdl2imagelibrary.pas
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ IMG_Animation = record
IMG_LoadAnimationTyped_RW : function (src: PSDL_RWops; freesrc: Integer; const _type: PChar): PIMG_Animation; cdecl;
IMG_FreeAnimation : procedure (anim: PIMG_Animation); cdecl;
IMG_LoadGIFAnimation_RW : function (src: PSDL_RWops): PIMG_Animation; cdecl;
IMG_LoadWEBPAnimation_RW : function (src: PSDL_RWops): PIMG_Animation; cdecl;

var
SDL2_image : TLibrary = nil;
Expand Down Expand Up @@ -184,7 +183,6 @@ function LoadSDL2Image ( const aPath : AnsiString ) : Boolean;
Pointer(IMG_LoadAnimationTyped_RW) := GetSymbol('IMG_LoadAnimationTyped_RW');
Pointer(IMG_FreeAnimation) := GetSymbol('IMG_FreeAnimation');
Pointer(IMG_LoadGIFAnimation_RW) := GetSymbol('IMG_LoadGIFAnimation_RW');
Pointer(IMG_LoadWEBPAnimation_RW) := GetSymbol('IMG_LoadWEBPAnimation_RW');

Exit( True );
end;
Expand Down

0 comments on commit bcea229

Please sign in to comment.