Skip to content

Commit f134872

Browse files
committed
Bundle SDL 2.24.0.
1 parent a605cfd commit f134872

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ This project adheres to [Semantic Versioning](https://semver.org/) since version
1010

1111
### Changed
1212
- Using `libtcod 1.22.3`.
13+
- Bundle `SDL 2.24.0` on Windows and MacOS.
1314

1415
### Fixed
1516
- Fixed double present bug in non-context flush functions.
1617
This was affecting performance and also caused a screen flicker whenever the global fade color was active.
18+
- Fixed the parsing of SDL 2.24.0 headers on Windows.
1719

1820
## [13.7.0] - 2022-08-07
1921
### Added

build_sdl.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# The SDL2 version to parse and export symbols from.
2323
SDL2_PARSE_VERSION = os.environ.get("SDL_VERSION", "2.0.20")
2424
# The SDL2 version to include in binary distributions.
25-
SDL2_BUNDLE_VERSION = os.environ.get("SDL_VERSION", "2.0.20")
25+
SDL2_BUNDLE_VERSION = os.environ.get("SDL_VERSION", "2.24.0")
2626

2727

2828
# Used to remove excessive newlines in debug outputs.
@@ -65,6 +65,10 @@
6565
"SDL_TRUE",
6666
# Ignore floating point symbols.
6767
"SDL_FLT_EPSILON",
68+
# Conditional config flags which might be missing.
69+
"SDL_VIDEO_RENDER_D3D12",
70+
"SDL_SENSOR_WINDOWS",
71+
"SDL_SENSOR_DUMMY",
6872
)
6973
)
7074

0 commit comments

Comments
 (0)