Skip to content

Commit 62e258d

Browse files
committed
Fix {$LINKLIB} directive on Darwin
On Darwin, we were linking against SDL2, instead of SDL3.
1 parent 93b399e commit 62e258d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

units/SDL3.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ interface
5151
{$IFDEF DARWIN}
5252
SDL_LibName = 'libSDL3.dylib';
5353
{$IFDEF FPC}
54-
{$LINKLIB libSDL2}
54+
{$LINKLIB libSDL3}
5555
{$ENDIF}
5656
{$ELSE}
5757
{$IFDEF FPC}

0 commit comments

Comments
 (0)