X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=lib%2Freaders%2Fswf.c;h=98c340ce0637563d7ad354b42a44e7d8db63bdb4;hp=7cb3580933b7e541902fc5215ac62b62628f9448;hb=b5a996ee217aea486eb78860fe7bab2b522f9678;hpb=2391d7ae5d8a145a250a8b80ab8c93ba74eba030 diff --git a/lib/readers/swf.c b/lib/readers/swf.c index 7cb3580..98c340c 100644 --- a/lib/readers/swf.c +++ b/lib/readers/swf.c @@ -183,7 +183,7 @@ gfxline_t* swfline_to_gfxline(SHAPELINE*line, int linestyle, int fillstyle0) //---- bitmap handling ---- -gfximage_t* gfximage_new(RGBA*data, int width, int height) +static gfximage_t* gfximage_new(RGBA*data, int width, int height) { gfximage_t* b = (gfximage_t*)rfx_calloc(sizeof(gfximage_t)); b->data = (gfxcolor_t*)data; @@ -192,13 +192,6 @@ gfximage_t* gfximage_new(RGBA*data, int width, int height) return b; } -void gfximage_free(gfximage_t*b) -{ - free(b->data); //! - b->data = 0; - free(b); -} - static gfximage_t* findimage(render_t*r, U16 id) { character_t*c = (character_t*)map16_get_id(r->id2char, id);