diff --git a/libs/vsdl2imagelibrary.pas b/libs/vsdl2imagelibrary.pas index 0808885..35f5334 100644 --- a/libs/vsdl2imagelibrary.pas +++ b/libs/vsdl2imagelibrary.pas @@ -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; @@ -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;