We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c94bd31 commit a71472fCopy full SHA for a71472f
1 file changed
scripts/download_sdl.py
@@ -128,8 +128,8 @@ def ensure_sdl():
128
if not os.path.isfile(include_path):
129
print(f"ERROR: SDL2 headers not found at {include_path}")
130
sys.exit(1)
131
- if PLATFORM != "win" and not os.path.isfile(os.path.join(lib_path, "libSDL2.a")):
132
- print(f"ERROR: SDL2 static library not found at {lib_path}/libSDL2.a")
+ if PLATFORM != "win" and not os.path.isfile(os.path.join(lib_path, "SDL2.a")):
+ print(f"ERROR: SDL2 static library not found at {lib_path}/SDL2.a")
133
134
135
print(f"SDL2 is ready at {BASE_DIR}")
0 commit comments