Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions buildconfig/download_win_prebuilt.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def get_urls(x86=True, x64=True):
'ec8bbf2a2d2bf754fe04b6ffc647f78aa7f4c2a1',
],
[
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.10/SDL3-devel-3.2.10-VC.zip',
'7a17d6fc7aa509c0c020e16ca10f82d6b5c2fc57'
'https://github.com/libsdl-org/SDL/releases/download/release-3.2.18/SDL3-devel-3.2.18-VC.zip',
'96246e328e2da7c2bd2c5734d5cb98953aca8229'
],
[
'https://github.com/pygame-community/SDL_image/releases/download/2.8.8-pgce/SDL2_image-devel-2.8.8-VCpgce.zip',
Expand Down Expand Up @@ -280,12 +280,12 @@ def copy(src, dst):
copy(
os.path.join(
temp_dir,
'SDL3-devel-3.2.10-VC/SDL3-3.2.10'
'SDL3-devel-3.2.18-VC/SDL3-3.2.18'
),
os.path.join(
move_to_dir,
prebuilt_dir,
'SDL3-3.2.10'
'SDL3-3.2.18'
)
)

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if plat == 'win' and host_machine.cpu_family().startswith('x86')
# yes, this is a bit ugly and hardcoded but it is what it is
# TODO (middle-term goal) - Should migrate away from this
# consider meson wraps? Hopefully can also get the same build path as below
sdl_ver = (sdl_api == 3) ? '3.2.10' : '2.32.8'
sdl_ver = (sdl_api == 3) ? '3.2.18' : '2.32.8'
sdl_image_ver = (sdl_api == 3) ? '3.2.4' : '2.8.8'
sdl_mixer_ver = '2.8.1'
sdl_ttf_ver = (sdl_api == 3) ? '3.2.2' : '2.24.0'
Expand Down
Loading