From: kramm Date: Fri, 2 Jan 2009 19:46:09 +0000 (+0000) Subject: added dummy __continue__ opcode X-Git-Tag: release-0-9-0~483 X-Git-Url: http://git.asbjorn.biz/?a=commitdiff_plain;h=75d341a689529da3879676403e43667008ac5820;p=swftools.git added dummy __continue__ opcode --- diff --git a/lib/as3/code.c b/lib/as3/code.c index 628f4d8..aef16ed 100644 --- a/lib/as3/code.c +++ b/lib/as3/code.c @@ -200,7 +200,8 @@ opcode_t opcodes[]={ {0x53, "applytype", "n", -1, 1, 0, OP_STACK_ARGS}, /* dummy instruction. Warning: this one is not actually supported by flash */ -{0xff, "__break__", "", 0, 0, 0, OP_RETURN}, +{0xfe, "__continue__", "s", 0, 0, 0, OP_RETURN}, +{0xff, "__break__", "s", 0, 0, 0, OP_RETURN}, }; static U8 op2index[256] = {254};