X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=lib%2Frfxswf.c;h=061010b0d83a0a6dad55d3e8776aef2fea78cbc8;hb=1f9f467ef90391c81c31da7f6b5ed2131443a1fe;hp=a225f7e954db0c508a91e30f43636e3bcd9dfc73;hpb=862d099892e1db70421248467923acc9b80bac21;p=swftools.git diff --git a/lib/rfxswf.c b/lib/rfxswf.c index a225f7e..061010b 100644 --- a/lib/rfxswf.c +++ b/lib/rfxswf.c @@ -179,6 +179,13 @@ int swf_SetU16(TAG * t,U16 v) t->data[t->len++] = a[1]; return 0; } +void swf_SetS16(TAG * t,int v) +{ + if(v>32767 || v<-32768) { + fprintf(stderr, "Warning: S16 overflow: %d\n", v); + } + swf_SetU16(t, (S16)v); +} int swf_SetU32(TAG * t,U32 v) { U8 a[4];