computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 5a33326fc9a894f5798665fe68ed0684d1f09830
parent 02e7ec53f744e0519fd2d2eeffa0a878b242d654
Author: Adam M <aemalone@gmail.com>
Date:   Sun, 18 Oct 2020 10:56:18 -0500

Dont free the stbi image.... seems problematic

Diffstat:
Msrc/animatedGif.hpp | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/animatedGif.hpp b/src/animatedGif.hpp @@ -157,7 +157,8 @@ struct AnimatedGifBuddy { return 0; } image = nvgCreateImageRGBA(ctx, w, h, imageFlags, img); - stbi_image_free(img); + //stbi_image_free(img); + initialized = true; return image; }