File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ function SDL_IMAGE_VERSION: Integer;
9898{ *
9999 * This macro will evaluate to true if compiled with SDL_image at least X.Y.Z.
100100 }
101- function SDL_VERSION_ATLEAST (X, Y, Z: Integer): Boolean;
101+ function SDL_IMAGE_VERSION_ATLEAST (X, Y, Z: Integer): Boolean;
102102
103103{ *
104104 * This function gets the version of the dynamically linked SDL_image library.
@@ -2209,7 +2209,7 @@ function SDL_IMAGE_VERSION: Integer;
22092209 Result:=SDL_VERSIONNUM(SDL_IMAGE_MAJOR_VERSION, SDL_IMAGE_MINOR_VERSION, SDL_IMAGE_MICRO_VERSION);
22102210end ;
22112211
2212- function SDL_VERSION_ATLEAST (X, Y, Z: Integer): Boolean;
2212+ function SDL_IMAGE_VERSION_ATLEAST (X, Y, Z: Integer): Boolean;
22132213begin
22142214 Result:=((SDL_IMAGE_MAJOR_VERSION >= X) and
22152215 ((SDL_IMAGE_MAJOR_VERSION > X) or (SDL_IMAGE_MINOR_VERSION >= Y)) and
You can’t perform that action at this time.
0 commit comments