git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51d6966
)
added dummy __continue__ opcode
author
kramm
<kramm>
Fri, 2 Jan 2009 19:46:09 +0000
(19:46 +0000)
committer
kramm
<kramm>
Fri, 2 Jan 2009 19:46:09 +0000
(19:46 +0000)
lib/as3/code.c
patch
|
blob
|
history
diff --git
a/lib/as3/code.c
b/lib/as3/code.c
index
628f4d8
..
aef16ed
100644
(file)
--- 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};