FlashDevelop AIR export - strip underlines from app id.

This commit is contained in:
Jindra Petřík
2024-08-18 20:35:27 +02:00
parent 7a049ba3b9
commit 36bd403787

View File

@@ -108,7 +108,7 @@ public class SwfFlashDevelopExporter {
simpleName = simpleName.substring(0, simpleName.lastIndexOf("."));
}
String simpleNameNoSpaces = simpleName.replace(" ", "");
String simpleNameNoSpaces = simpleName.replace(" ", "").replace("_", "");
SetBackgroundColorTag bgColorTag = swf.getBackgroundColor();