Moved the SDL version back to SDL_version.h

Added a comment at the top of SDL.h with the current version, for informational purposes
This commit is contained in:
Sam Lantinga 2024-05-15 14:22:41 -07:00
parent c6354252a1
commit fbe7e2e6d3
12 changed files with 49 additions and 40 deletions

View file

@ -23,7 +23,7 @@ def main():
exit(1)
# Check whether we can still modify the ABI
version_header = pathlib.Path( SDL_INCLUDE_DIR / "SDL.h" ).read_text()
version_header = pathlib.Path( SDL_INCLUDE_DIR / "SDL_version.h" ).read_text()
if not re.search("SDL_MINOR_VERSION\s+[01]\s", version_header):
raise Exception("ABI is frozen, symbols cannot be renamed")