From d62d17faa311ea0371b3afd2bdf0519969fcff50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Brand=C3=A3o?= Date: Fri, 10 Jul 2026 22:10:04 -0300 Subject: [PATCH] fix missing return value of World_GetUserData --- vendor/box3d/box3d.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/box3d/box3d.odin b/vendor/box3d/box3d.odin index 0e251dddc..569ebeb2b 100644 --- a/vendor/box3d/box3d.odin +++ b/vendor/box3d/box3d.odin @@ -389,7 +389,7 @@ foreign lib { World_SetUserData :: proc(worldId: WorldId, userData: rawptr) --- // Get the user data pointer. - World_GetUserData :: proc(worldId: WorldId) --- + World_GetUserData :: proc(worldId: WorldId) -> rawptr --- // Set the friction callback. Passing NULL resets to default. World_SetFrictionCallback :: proc(worldId: WorldId, callback: FrictionCallback) ---