File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 2222# The SDL2 version to parse and export symbols from.
2323SDL2_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.
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
You can’t perform that action at this time.
0 commit comments