Skip to content

Commit 80a2453

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

units/SDL3_ttf.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ interface
6666
{$IFDEF DARWIN}
6767
IMG_LibName = 'libSDL3_ttf.dylib';
6868
{$IFDEF FPC}
69-
{$LINKLIB libSDL3}
69+
{$LINKLIB libSDL3_ttf}
7070
{$ENDIF}
7171
{$ELSE}
7272
{$IFDEF FPC}
@@ -80,7 +80,7 @@ interface
8080
{$IFDEF MACOS}
8181
IMG_LibName = 'SDL3_ttf';
8282
{$IFDEF FPC}
83-
{$linklib libSDL3}
83+
{$linklib libSDL3_ttf}
8484
{$ENDIF}
8585
{$ENDIF}
8686

0 commit comments

Comments
 (0)