mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 22:00:46 +00:00
Fixed #2428 Charset setting on FLA export in format MX and below,
Default charset for SWFS v5 and lower is WINDOWS-1252
This commit is contained in:
@@ -6022,7 +6022,7 @@ public class XFLConverter {
|
||||
InputStorageInterface inputStorage = new ZippedInputStorage(new File(zipfile));
|
||||
OutputStorageInterface outputStorage = new CfbOutputStorage(new File(outfile));
|
||||
|
||||
FlaConverter contentsGenerator = new FlaConverter(cbfFlaVersion);
|
||||
FlaConverter contentsGenerator = new FlaConverter(cbfFlaVersion, swf.getCharset());
|
||||
contentsGenerator.convert(inputStorage, outputStorage);
|
||||
inputStorage.close();
|
||||
outputStorage.close();
|
||||
|
||||
Reference in New Issue
Block a user