From 6eb0730c52b01e1bc4d4859cb29355cb5c21c216 Mon Sep 17 00:00:00 2001 From: veclavtalica Date: Thu, 20 Feb 2025 19:52:14 +0300 Subject: [PATCH] mark identity parameter in log_ functions optional --- share/twn_api.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/twn_api.json b/share/twn_api.json index 98dad5e..cf543df 100644 --- a/share/twn_api.json +++ b/share/twn_api.json @@ -308,7 +308,7 @@ "header": "twn_util.h", "params": [ { "name": "value", "type": "Vec2" }, - { "name": "identity", "type": "char *" } + { "name": "identity", "type": "char *", "default": {} } ] }, @@ -318,7 +318,7 @@ "header": "twn_util.h", "params": [ { "name": "value", "type": "Vec3" }, - { "name": "identity", "type": "char *" } + { "name": "identity", "type": "char *", "default": {} } ] }, @@ -328,7 +328,7 @@ "header": "twn_util.h", "params": [ { "name": "value", "type": "Rect" }, - { "name": "identity", "type": "char *" } + { "name": "identity", "type": "char *", "default": {} } ] },