summaryrefslogtreecommitdiffhomepage
path: root/parser/output/raylib_api.lua
diff options
context:
space:
mode:
authorRay <[email protected]>2024-07-01 18:31:33 +0200
committerRay <[email protected]>2024-07-01 18:31:33 +0200
commit2efd36a124ac65efc5494f0ff1b782d801fe14e9 (patch)
tree1fe47062432d732088ef8cf4c11b806a25199d49 /parser/output/raylib_api.lua
parent2f49250baf68000f79d37f2cc0478d3fa310c331 (diff)
parent6d30220acc49a4645ef51ce17ad546dad718a997 (diff)
downloadraylib-2efd36a124ac65efc5494f0ff1b782d801fe14e9.tar.gz
raylib-2efd36a124ac65efc5494f0ff1b782d801fe14e9.zip
Merge branch 'master' of https://github.com/raysan5/raylib
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 = ""
},
{