summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.lua
diff options
context:
space:
mode:
authorgithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-07-01 16:30:47 +0000
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-07-01 16:30:47 +0000
commit6d30220acc49a4645ef51ce17ad546dad718a997 (patch)
tree5835c3cd2596e55afb2a718dde39c08af2672053 /parser/output/raylib_api.lua
parentfbd79cde5f67ec863832a95942ae0c2e88947bbc (diff)
downloadraylib-6d30220acc49a4645ef51ce17ad546dad718a997.tar.gz
raylib-6d30220acc49a4645ef51ce17ad546dad718a997.zip
Update raylib_api.* by CI
Diffstat (limited to 'parser/output/raylib_api.lua')
-rw-r--r--parser/output/raylib_api.lua10
1 files changed, 2 insertions, 8 deletions
diff --git a/parser/output/raylib_api.lua b/parser/output/raylib_api.lua
index 97eeb868..1ec84bca 100644
--- a/parser/output/raylib_api.lua
+++ b/parser/output/raylib_api.lua
@@ -61,21 +61,15 @@ return {
description = ""
},
{
- name = "MAX_ALLOC_SIZE",
- type = "INT_MATH",
- value = "1024*1024",
- description = "1GB of maximum allocation data"
- },
- {
name = "RL_MALLOC(sz)",
type = "MACRO",
- value = "((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)",
+ value = "malloc(sz)",
description = ""
},
{
name = "RL_CALLOC(n,sz)",
type = "MACRO",
- value = "((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)",
+ value = "calloc(n,sz)",
description = ""
},
{