Remove trail spaces

This commit is contained in:
Ray
2023-09-26 12:54:24 +02:00
parent f7c3035b8c
commit f2389a1e55
2 changed files with 6 additions and 6 deletions

View File

@@ -325,7 +325,7 @@ Image LoadImageSvg(const char *fileNameOrString, int width, int height)
#if defined(SUPPORT_FILEFORMAT_SVG)
bool isSvgStringValid = false;
// Validate fileName or string
if (fileNameOrString != NULL)
{
@@ -355,7 +355,7 @@ Image LoadImageSvg(const char *fileNameOrString, int width, int height)
if (isSvgStringValid)
{
struct NSVGimage *svgImage = nsvgParse(fileData, "px", 96.0f);
unsigned char *img = RL_MALLOC(width*height*4);
// Calculate scales for both the width and the height