| Fix constant division by zero crashing the editor ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ Example: const int A=1/0; Also affects fixed-type variables. Fix fixed-type literals being interpreted as zero ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ Example: const fixed A=1.; Only literals ending in a period are affected by this bug. Allow addressing the 32nd bit of integer variables ŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻŻ Currently, variable assignments like this one fail: int A=0x80000000; with the error "Numerical Overflow". Addressing the 32nd bit is essential for bitmasks and currently the most straightforward way is blocked by an error. There are workarounds (like 1<<31 or ~0x7FFFFFFF), but they look crude in code, incur overhead and cant be used to represent all use-cases efficiently. This error is only reported by the editor. The game's Galaxy compiler does not report this error and parses the code correctly.