diff options
author | sanine <sanine.not@pm.me> | 2022-09-27 17:00:46 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-09-27 17:00:46 -0500 |
commit | d822cf5b786776788cace9c3f9b2be9df41812e9 (patch) | |
tree | a1afdd5894495b2ac89cf4f45d5fa26bfa2ca3f3 /src/image | |
parent | 0745aeb35bee22f52b812869cf77995ff1ba373b (diff) |
fix uninitialized memory bug in mesh loading and add suzanne.dae
Diffstat (limited to 'src/image')
-rw-r--r-- | src/image/image.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/image/image.c b/src/image/image.c index cf08625..a8a0502 100644 --- a/src/image/image.c +++ b/src/image/image.c @@ -1,6 +1,7 @@ #include <lua.h> #include <honeysuckle.h> -#define STB_IMAGE_IMPLEMENTATION +/* assimp provides its own stb_image implementation */ +/*#define STB_IMAGE_IMPLEMENTATION*/ #include "stb_image.h" #include "image.h" |