diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b6df5e85..b1caf45ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to this project will be documented in this file. ## [Unreleased] ### Fixed - AS1/2 - switch with getvariable decompilation +- AS1/2 - call action parameters as string ## [14.6.0] - 2021-11-22 ### Added diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/CallActionItem.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/CallActionItem.java index d468cf648..4aa5dde81 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/CallActionItem.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/model/CallActionItem.java @@ -43,7 +43,7 @@ public class CallActionItem extends ActionItem { writer.append("call"); writer.spaceBeforeCallParenthesies(1); writer.append("("); - stripQuotes(value, localData, writer); + value.appendTo(writer, localData); return writer.append(")"); }