Skip to content

Commit a71472f

Browse files
fix naming bug
1 parent c94bd31 commit a71472f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/download_sdl.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ def ensure_sdl():
128128
if not os.path.isfile(include_path):
129129
print(f"ERROR: SDL2 headers not found at {include_path}")
130130
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")
131+
if PLATFORM != "win" and not os.path.isfile(os.path.join(lib_path, "SDL2.a")):
132+
print(f"ERROR: SDL2 static library not found at {lib_path}/SDL2.a")
133133
sys.exit(1)
134134

135135
print(f"SDL2 is ready at {BASE_DIR}")

0 commit comments

Comments
 (0)