Eliot's Forum
++ Seems to Add a ")" [Unreal 227h] - Printable Version

+- Eliot's Forum (https://eliotvu.com/forum)
+-- Forum: UE Explorer (https://eliotvu.com/forum/forumdisplay.php?fid=1)
+--- Forum: General (https://eliotvu.com/forum/forumdisplay.php?fid=3)
+---- Forum: Issues (https://eliotvu.com/forum/forumdisplay.php?fid=4)
+---- Thread: ++ Seems to Add a ")" [Unreal 227h] (/showthread.php?tid=13)



++ Seems to Add a ")" [Unreal 227h] - titegtnodI - 04-07-2012

Code:
PowerLevel++;

Seems to decompile to:

Code:
PowerLevel ++ );

Edit:

To expand upon this:

Code:
PowerLevel++;

Decompiled to:

Code:
PowerLevel ++ );
{
}

It was amusing to say the least Smile.

If it helps the line was closer to something simmilar to this (Yes, both PowerLevel):

Code:
PowerLevel++;
PowerLevel++;

Into:

Code:
PowerLevel ++ );
{
}
PowerLevel ++ );



RE: ++ Seems to Add a ")" [Unreal 227h] - eliot - 05-13-2012

This one is quite strange :p Didn't exist when I released the demo of UE Explorer :/

This isn't necessary a ++ but a implied continue or break.


RE: ++ Seems to Add a ")" [Unreal 227h] - eliot - 05-18-2012

Apparently this is caused by the chosen NativesTableList, if you change it from UDK to UT2004 then this will be decompiled correctly.

The ++ operator is set as a binary operator in NativesTableList_UDK rather than unary.


RE: ++ Seems to Add a ")" [Unreal 227h] - eliot - 05-21-2012

Fixed this issue in version 1.1 Smile Thanks for reporting!