summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRay <[email protected]>2023-12-14 15:30:48 +0100
committerRay <[email protected]>2023-12-14 15:30:48 +0100
commit88db11fda4421c66a6043011b36a3f13494b98e5 (patch)
tree8c4d83f5aea680779ea12ed355838c3e82594bb2
parentc5ebdb8ba77afa5745eb01032cf1909b5a03bffa (diff)
downloadraylib-88db11fda4421c66a6043011b36a3f13494b98e5.tar.gz
raylib-88db11fda4421c66a6043011b36a3f13494b98e5.zip
Update rtextures.c
-rw-r--r--src/rtextures.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index c78b0ebf..a7632f3d 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -213,14 +213,14 @@
#define STBIR_MALLOC(size,c) ((void)(c), RL_MALLOC(size))
#define STBIR_FREE(ptr,c) ((void)(c), RL_FREE(ptr))
#define STB_IMAGE_RESIZE_IMPLEMENTATION
-#include "external/stb_image_resize2.h" // Required for: stbir_resize_uint8_linear() [ImageResize()]
+#include "external/stb_image_resize2.h" // Required for: stbir_resize_uint8_linear() [ImageResize()]
#if defined(SUPPORT_FILEFORMAT_SVG)
- #define NANOSVG_IMPLEMENTATION // Expands implementation
- #include "external/nanosvg.h"
+ #define NANOSVG_IMPLEMENTATION // Expands implementation
+ #include "external/nanosvg.h"
- #define NANOSVGRAST_IMPLEMENTATION
- #include "external/nanosvgrast.h"
+ #define NANOSVGRAST_IMPLEMENTATION
+ #include "external/nanosvgrast.h"
#endif
//----------------------------------------------------------------------------------