Fix 32-bit SDL include paths

This commit is contained in:
allkern
2024-05-11 13:25:09 -03:00
parent cbfed7e242
commit 7f19151ffc
+3 -3
View File
@@ -11,9 +11,9 @@ $PSX_DIR = "."
mkdir -Force -Path bin > $null
gcc -I"`"$($PSX_DIR)`"" `
-I"`"$($PSX_DIR)\psx`"" `
-I"`"$($SDL2_DIR)\include\SDL2`"" `
gcc -I"$($PSX_DIR)" `
-I"$($PSX_DIR)\psx" `
-I"$($SDL2_DIR)\include\SDL2" `
"psx\*.c" `
"psx\dev\*.c" `
"psx\input\*.c" `