From 3d7e8c9bb7bbe2b94aff10cbd2c7827969ecb1ce Mon Sep 17 00:00:00 2001 From: hwsmm Date: Thu, 12 Sep 2024 12:39:50 +0900 Subject: [PATCH] Add missing SDL_WPRINTF_VARARG_FUNCV in gendynapi.py --- src/dynapi/gendynapi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dynapi/gendynapi.py b/src/dynapi/gendynapi.py index 7c5f430f18..70de57cae9 100755 --- a/src/dynapi/gendynapi.py +++ b/src/dynapi/gendynapi.py @@ -167,6 +167,7 @@ def main(): func = func.replace(" SDL_PRINTF_VARARG_FUNCV(2)", ""); func = func.replace(" SDL_PRINTF_VARARG_FUNCV(3)", ""); func = func.replace(" SDL_WPRINTF_VARARG_FUNC(3)", ""); + func = func.replace(" SDL_WPRINTF_VARARG_FUNCV(3)", ""); func = func.replace(" SDL_SCANF_VARARG_FUNC(2)", ""); func = func.replace(" SDL_SCANF_VARARG_FUNCV(2)", ""); func = func.replace(" SDL_ANALYZER_NORETURN", "");