Skip to content

Commit 419d9c1

Browse files
committed
Fix {$LINKLIB} directives in SDL3_image
The {$LINKLIB} directives in SDL3_image.pas were instructing the compiler to link against the base SDL3 library, instead of SDL3_image.
1 parent fe5a563 commit 419d9c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

units/SDL3_image.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ interface
6363
{$IFDEF DARWIN}
6464
IMG_LibName = 'libSDL3_image.dylib';
6565
{$IFDEF FPC}
66-
{$LINKLIB libSDL3}
66+
{$LINKLIB libSDL3_image}
6767
{$ENDIF}
6868
{$ELSE}
6969
{$IFDEF FPC}
@@ -77,7 +77,7 @@ interface
7777
{$IFDEF MACOS}
7878
IMG_LibName = 'SDL3_image';
7979
{$IFDEF FPC}
80-
{$linklib libSDL3}
80+
{$linklib libSDL3_image}
8181
{$ENDIF}
8282
{$ENDIF}
8383

0 commit comments

Comments
 (0)