Eliot's Forum

Full Version: ++ Seems to Add a ")" [Unreal 227h]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 ++ );
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.
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.
Fixed this issue in version 1.1 Smile Thanks for reporting!