SDL API renaming: SDL_Alloc*/SDL_Free* -> SDL_Create*/SDL_Destroy*

Fixes https://github.com/libsdl-org/SDL/issues/6945
This commit is contained in:
Sam Lantinga 2022-12-29 15:07:59 -08:00
parent e1bd5bd071
commit 98678b5d8d
14 changed files with 84 additions and 67 deletions

View file

@ -317,7 +317,7 @@ int main(int argc, char *argv[])
#endif
for (i = 0; i < num_cursors; ++i) {
SDL_FreeCursor(cursors[i]);
SDL_DestroyCursor(cursors[i]);
}
quit(0);