From 7f19151ffc8aacfb6f95084fcd2d902de4c3efbb Mon Sep 17 00:00:00 2001 From: allkern Date: Sat, 11 May 2024 13:25:09 -0300 Subject: [PATCH] Fix 32-bit SDL include paths --- build-win32.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-win32.ps1 b/build-win32.ps1 index 8154cf1..9af1699 100644 --- a/build-win32.ps1 +++ b/build-win32.ps1 @@ -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" `