CensoredUsername / unrpyc

A ren'py script decompiler
Other
852 stars 154 forks source link

Codegen doesn't handle order of operations correctly #43

Closed jackmcbarn closed 9 years ago

jackmcbarn commented 9 years ago

The Python expression "x % (y * z)" becomes "x % y * z" when decompiled, but that's evaluated as "(x % y) * z".