Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
++ Seems to Add a ")" [Unreal 227h]
#1
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 ++ );
#2
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.
#3
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.
#4
Fixed this issue in version 1.1 Smile Thanks for reporting!


Forum Jump:


Users browsing this thread: 1 Guest(s)