Skip to content

Commit ab92993

Browse files
committed
Fix pushstring args
1 parent 816159c commit ab92993

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

AS3/src/com/cff/anebe/ir/ASInstruction.as

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ package com.cff.anebe.ir
461461
}
462462
public static function PushString(val:String):ASInstruction
463463
{
464-
return new ASInstruction(OP_pushstring);
464+
return new ASInstruction(OP_pushstring, [val]);
465465
}
466466
public static function PushInt(val:int):ASInstruction
467467
{

0 commit comments

Comments
 (0)