summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textures.c b/src/textures.c
index 19bfd16a..5b0c3971 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -115,7 +115,7 @@
#define STBI_MALLOC RL_MALLOC
#define STBI_FREE RL_FREE
- #define STBI_REALLOC(p,newsz) realloc(p,newsz)
+ #define STBI_REALLOC RL_REALLOC
#define STB_IMAGE_IMPLEMENTATION
#include "external/stb_image.h" // Required for: stbi_load_from_file()
@@ -1604,7 +1604,7 @@ void ImageMipmaps(Image *image)
if (image->mipmaps < mipCount)
{
- void *temp = realloc(image->data, mipSize);
+ void *temp = RL_REALLOC(image->data, mipSize);
if (temp != NULL)
{