Examples:
scoreboard_columns_set name ping | score --> the fields ping and score overlap
scoreboard_columns_set name ping score | --> the field score goes beyond the scoreboard table
This bug was introduced by the utf8 related changes.
for(j = 0; j < hud_num_fields; ++j)
if(j != i)
if (hud_field[i] != SP_SEPARATOR)
- namesize -= hud_size[j] + 1;
- namesize += 1;
+ namesize -= hud_size[j] + hud_fontsize_x;
+ namesize += hud_fontsize_x;
hud_size[i] = namesize;
if (hud_fixscoreboardcolumnwidth_iconlen != 0)