CUi::Update
to ensure consistent rotatio...char
is signed
in various places in the code. In particular, the Str.StrToInts
test will fail when char
is not signed
and names containing special characters will be displayed incorrectly on servers.
Therefore, the compiler flag -fsigned-char
is set unconditionally instead of only for ARM and ARM64, as we expect char
to be signed
on all architectures.
A static assertion is added to ensure at compile time that char
is signed
independently from the flag ...