mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 04:11:13 +00:00
Fixed: #1838 AS3 - Properly handling of long unsigned values, hex values, default uint values etc.
Changed: AS3 integer values are internally (e.g. in the lib) handled as java int type instead of long.
This commit is contained in:
@@ -199,8 +199,8 @@ public class DebuggerTools {
|
||||
}
|
||||
//Set debugger port to actually set port
|
||||
for (int i = 0; i < a.constants.getIntCount(); i++) {
|
||||
if (a.constants.getInt(i) == 123456L) {
|
||||
a.constants.setInt(i, (long) port);
|
||||
if (a.constants.getInt(i) == 123456) {
|
||||
a.constants.setInt(i, port);
|
||||
}
|
||||
}
|
||||
//Add to target SWF
|
||||
|
||||
Reference in New Issue
Block a user