Skip to content

Commit

Permalink
Remove SDL_DECLSPEC_FREE before SDL_DECLSPEC in gendynapi
Browse files Browse the repository at this point in the history
  • Loading branch information
hwsmm authored and slouken committed Jul 28, 2024
1 parent 44f1f81 commit 35e42d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynapi/gendynapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,8 @@ def main():
#
func_ret = func_ret.replace('extern', ' ')
func_ret = func_ret.replace('SDLCALL', ' ')
func_ret = func_ret.replace('SDL_DECLSPEC', ' ')
func_ret = func_ret.replace('SDL_DECLSPEC_FREE', ' ')
func_ret = func_ret.replace('SDL_DECLSPEC', ' ')
# Remove trailing spaces in front of '*'
tmp = ""
while func_ret != tmp:
Expand Down

0 comments on commit 35e42d0

Please sign in to comment.