From ea91a4fe73d359c61f998c04f7c278b714bbd0c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=F8=EDk?= Date: Sat, 27 Jul 2013 14:16:46 +0200 Subject: [PATCH] Issue #268 "register" parameter names instead "_loc*_" --- .../jpexs/decompiler/flash/action/model/FunctionActionItem.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/com/jpexs/decompiler/flash/action/model/FunctionActionItem.java b/trunk/src/com/jpexs/decompiler/flash/action/model/FunctionActionItem.java index 7bd528e62..e6bae96ea 100644 --- a/trunk/src/com/jpexs/decompiler/flash/action/model/FunctionActionItem.java +++ b/trunk/src/com/jpexs/decompiler/flash/action/model/FunctionActionItem.java @@ -80,7 +80,7 @@ public class FunctionActionItem extends ActionItem { } String pname = paramNames.get(p); if (pname == null || pname.equals("")) { - pname = "register" + (regStart + p); + pname = new RegisterNumber(regStart + p).translate(); } ret += hilight(pname); }