Open theclashingfritz opened 5 years ago
This might be related to #224 . Good find. :)
They are likely linked. Though in which ways is not yet known.
So as it turns out this actually causes the game to freeze upon selecting "Begin Game". This needs to be corrected in the future (and I assume errors of this type will be addressed later on when the decompiler rewrite is done).
This probably exists in the old one as well but in the new decompiler there's a couple of break sections that are left without an proper break in scr_namingscreen for entering you name.
The code should decompile to
if ((selected_col < 0) || ((selected_row < 0) || (string_length(charmap[selected_row, selected_col]) > 0))) { break } else { continue }
but instead decompiles toif ((selected_col < 0) || ((selected_row < 0) || (string_length(charmap[selected_row, selected_col]) > 0))) { } else { continue }