removed macro that does nothing (#5163)

This commit is contained in:
wileyanderssen
2025-09-01 12:17:51 +03:00
committed by GitHub
parent 223feca13a
commit 998a18b641

View File

@@ -658,8 +658,6 @@ bool ExportImage(Image image, const char *fileName)
result = SaveFileData(fileName, fileData, dataSize);
RL_FREE(fileData);
}
#else
if (false) { }
#endif
#if defined(SUPPORT_FILEFORMAT_BMP)
else if (IsFileExtension(fileName, ".bmp")) result = stbi_write_bmp(fileName, image.width, image.height, channels, imgData);