-
Notifications
You must be signed in to change notification settings - Fork 223
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Decompiler improvements #162
Conversation
Alright, I think that's everything. I'm able to export a working project without issue, after next commit. |
…stead of unsigned integers
Previously it just represented negative origin as very large positive numbers (>~2.14 billion) due to the nature of signed/unsigned integers. This obviously didn't lose any data, but it makes it harder to deal with. So that fixes it for the library and editor in one, though the editor didn't need to be touched at all. |
if (temp_var_1 - 1)
and abreak
bug causing some code to be omitted from the decompilation.