Skip to content

Commit abdb169

Browse files
committed
Update SDL to 2.28.1
The latest version fixes SDL's rendering error. Closes #131
1 parent e39c25d commit abdb169

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ This project adheres to [Semantic Versioning](https://semver.org/) since version
66
## [Unreleased]
77
### Changed
88
- Added an empty `__slots__` to `EventDispatch`.
9+
- Bundle `SDL 2.28.1` on Windows and MacOS.
10+
11+
### Fixed
12+
- Fixed "SDL failed to get a vertex buffer for this Direct3D 9 rendering batch!"
13+
https://github.com/libtcod/python-tcod/issues/131
914

1015
### Removed
1116
- Dropped support for Python 3.7.

build_sdl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# The SDL2 version to parse and export symbols from.
2727
SDL2_PARSE_VERSION = os.environ.get("SDL_VERSION", "2.0.20")
2828
# The SDL2 version to include in binary distributions.
29-
SDL2_BUNDLE_VERSION = os.environ.get("SDL_VERSION", "2.26.0")
29+
SDL2_BUNDLE_VERSION = os.environ.get("SDL_VERSION", "2.28.1")
3030

3131

3232
# Used to remove excessive newlines in debug outputs.

0 commit comments

Comments
 (0)