We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f470e80 commit 006bf60Copy full SHA for 006bf60
sdl3/SDL_version.py
@@ -1,6 +1,6 @@
1
from .__init__ import ctypes, typing, abc, SDL_FUNC, SDL_BINARY
2
3
-SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION = 3, 2, 10
+SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION = 3, 2, 14
4
5
SDL_VERSIONNUM: abc.Callable[[int, int, int], int] = \
6
lambda major, minor, patch: major * 1000000 + minor * 1000 + patch
0 commit comments