mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-06 03:18:14 +00:00
Reverted memory allocators additional checks
This commit is contained in:
@@ -123,12 +123,11 @@
|
|||||||
|
|
||||||
// Allow custom memory allocators
|
// Allow custom memory allocators
|
||||||
// NOTE: Require recompiling raylib sources
|
// NOTE: Require recompiling raylib sources
|
||||||
#define MAX_ALLOC_SIZE 1024*1024 // 1GB of maximum allocation data
|
|
||||||
#ifndef RL_MALLOC
|
#ifndef RL_MALLOC
|
||||||
#define RL_MALLOC(sz) ((sz > MAX_ALLOC_SIZE)? malloc(sz) : NULL)
|
#define RL_MALLOC(sz) malloc(sz)
|
||||||
#endif
|
#endif
|
||||||
#ifndef RL_CALLOC
|
#ifndef RL_CALLOC
|
||||||
#define RL_CALLOC(n,sz) ((n*sz > MAX_ALLOC_SIZE)? calloc(n,sz) : NULL)
|
#define RL_CALLOC(n,sz) calloc(n,sz)
|
||||||
#endif
|
#endif
|
||||||
#ifndef RL_REALLOC
|
#ifndef RL_REALLOC
|
||||||
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)
|
#define RL_REALLOC(ptr,sz) realloc(ptr,sz)
|
||||||
|
Reference in New Issue
Block a user