From 75d341a689529da3879676403e43667008ac5820 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 2 Jan 2009 19:46:09 +0000 Subject: [PATCH] added dummy __continue__ opcode --- lib/as3/code.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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}; -- 1.7.10.4