make comment more helpful
This commit is contained in:
parent
04e4b0c469
commit
6d92996661
1 changed files with 2 additions and 1 deletions
|
|
@ -806,7 +806,8 @@ check_cell_consumed(CellData *cell_data, CPUCell *last_cpu_cell) {
|
|||
break;
|
||||
default: {
|
||||
index_type mark = cell_data->cpu_cell->cc_idx[cell_data->codepoints_consumed - 1];
|
||||
// VS15 causes rendering to break, so map it to 0
|
||||
// VS15/16 cause rendering to break, as they get marked as
|
||||
// special glyphs, so map to 0, to avoid that
|
||||
cell_data->current_codepoint = (mark == VS15 || mark == VS16) ? 0 : codepoint_for_mark(mark);
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue