From 140e73678dc5791b2ec3a6d9cfbf5c686a2f977d Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Wed, 23 Oct 2024 17:03:09 +0900 Subject: [PATCH] Fix va_list for another platform --- SDL3-CS/generate_bindings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/SDL3-CS/generate_bindings.py b/SDL3-CS/generate_bindings.py index 5b888e1..5552f54 100644 --- a/SDL3-CS/generate_bindings.py +++ b/SDL3-CS/generate_bindings.py @@ -261,6 +261,7 @@ base_command = [ "wchar_t *=IntPtr", # wchar_t has a platform-defined size "bool=SDLBool", # treat bool as C# helper type "__va_list=byte*", + "__va_list_tag=byte", "--define-macro", "SDL_FUNCTION_POINTER_IS_VOID_POINTER",