Skip to content

Commit 0a26d9a

Browse files
Update raylib_api.* by CI
1 parent 8a5a95c commit 0a26d9a

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

parser/output/raylib_api.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9801,7 +9801,7 @@
98019801
},
98029802
{
98039803
"name": "TextToInteger",
9804-
"description": "Get integer value from text (negative values not supported)",
9804+
"description": "Get integer value from text",
98059805
"returnType": "int",
98069806
"params": [
98079807
{
@@ -9812,7 +9812,7 @@
98129812
},
98139813
{
98149814
"name": "TextToFloat",
9815-
"description": "Get float value from text (negative values not supported)",
9815+
"description": "Get float value from text",
98169816
"returnType": "float",
98179817
"params": [
98189818
{

parser/output/raylib_api.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6969,15 +6969,15 @@ return {
69696969
},
69706970
{
69716971
name = "TextToInteger",
6972-
description = "Get integer value from text (negative values not supported)",
6972+
description = "Get integer value from text",
69736973
returnType = "int",
69746974
params = {
69756975
{type = "const char *", name = "text"}
69766976
}
69776977
},
69786978
{
69796979
name = "TextToFloat",
6980-
description = "Get float value from text (negative values not supported)",
6980+
description = "Get float value from text",
69816981
returnType = "float",
69826982
params = {
69836983
{type = "const char *", name = "text"}

parser/output/raylib_api.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3757,12 +3757,12 @@ Function 438: TextToCamel() (1 input parameters)
37573757
Function 439: TextToInteger() (1 input parameters)
37583758
Name: TextToInteger
37593759
Return type: int
3760-
Description: Get integer value from text (negative values not supported)
3760+
Description: Get integer value from text
37613761
Param[1]: text (type: const char *)
37623762
Function 440: TextToFloat() (1 input parameters)
37633763
Name: TextToFloat
37643764
Return type: float
3765-
Description: Get float value from text (negative values not supported)
3765+
Description: Get float value from text
37663766
Param[1]: text (type: const char *)
37673767
Function 441: DrawLine3D() (3 input parameters)
37683768
Name: DrawLine3D

parser/output/raylib_api.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2487,10 +2487,10 @@
24872487
<Function name="TextToCamel" retType="const char *" paramCount="1" desc="Get Camel case notation version of provided string">
24882488
<Param type="const char *" name="text" desc="" />
24892489
</Function>
2490-
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text (negative values not supported)">
2490+
<Function name="TextToInteger" retType="int" paramCount="1" desc="Get integer value from text">
24912491
<Param type="const char *" name="text" desc="" />
24922492
</Function>
2493-
<Function name="TextToFloat" retType="float" paramCount="1" desc="Get float value from text (negative values not supported)">
2493+
<Function name="TextToFloat" retType="float" paramCount="1" desc="Get float value from text">
24942494
<Param type="const char *" name="text" desc="" />
24952495
</Function>
24962496
<Function name="DrawLine3D" retType="void" paramCount="3" desc="Draw a line in 3D world space">

0 commit comments

Comments
 (0)