Skip to content

Commit aea9c26

Browse files
committed
Fixed: #2393 AS1/2 ActionGotoFrame2 P-code trailing comma
1 parent fc553ad commit aea9c26

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ All notable changes to this project will be documented in this file.
1313
- AS1/2 - Push action hilighting, GetProperty, Call action hilighting
1414
- [#2381] Font color values with alpha allowed in html edittext, but alpha ignored
1515
- [#2384] Vanishing pins on AS3 code editing save, on script deletion and few other cases
16-
- [#2394] Broken deobfuscation on incorrect length of ActionStrictMode,
17-
- [#2394] ActionStrictMode with mode larger than 1 now ignored
16+
- [#2394] Broken AS1/2 deobfuscation on incorrect length of ActionStrictMode,
17+
- [#2394] AS1/2 ActionStrictMode with mode larger than 1 now ignored
18+
- [#2393] AS1/2 ActionGotoFrame2 P-code trailing comma
1819

1920
## [22.0.1] - 2024-11-20
2021
### Added
@@ -3689,6 +3690,7 @@ Major version of SWF to XML export changed to 2.
36893690
[#2381]: https://www.free-decompiler.com/flash/issues/2381
36903691
[#2384]: https://www.free-decompiler.com/flash/issues/2384
36913692
[#2394]: https://www.free-decompiler.com/flash/issues/2394
3693+
[#2393]: https://www.free-decompiler.com/flash/issues/2393
36923694
[#2366]: https://www.free-decompiler.com/flash/issues/2366
36933695
[#2367]: https://www.free-decompiler.com/flash/issues/2367
36943696
[#2372]: https://www.free-decompiler.com/flash/issues/2372

libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/action/swf4/ActionGotoFrame2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ protected int getContentBytesLength() {
121121

122122
@Override
123123
public String toString() {
124-
return "GotoFrame2 " + sceneBiasFlag + ", " + playFlag + ", " + (sceneBiasFlag ? ", " + sceneBias : "");
124+
return "GotoFrame2 " + sceneBiasFlag + ", " + playFlag + (sceneBiasFlag ? ", " + sceneBias : "");
125125
}
126126

127127
/**

0 commit comments

Comments
 (0)