Update rtextures.c

This commit is contained in:
Ray 2023-04-25 20:01:26 +02:00
parent 64f2f86d32
commit e2996f167e

View File

@ -525,6 +525,8 @@ bool ExportImage(Image image, const char *fileName)
{
int success = 0;
if ((image.width == 0) || (image.height == 0) || (image.data == NULL)) return success;
#if defined(SUPPORT_IMAGE_EXPORT)
int channels = 4;
bool allocatedData = false;