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 9c405ca commit 4c208bfCopy full SHA for 4c208bf
sdl3/SDL_version.py
@@ -1,7 +1,7 @@
1
from . import ctypes, typing, abc, \
2
SDL_FUNC, SDL_BINARY
3
4
-SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION = 3, 2, 16
+SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_MICRO_VERSION = 3, 2, 18
5
6
SDL_VERSIONNUM: abc.Callable[[int, int, int], int] = \
7
lambda major, minor, patch: major * 1000000 + minor * 1000 + patch
0 commit comments