Home
last modified time | relevance | path

Searched refs:horiz_offset (Results 1 – 1 of 1) sorted by relevance

/dragonfly/contrib/ee/
HDee.c158 int horiz_offset = 0; /* offset from left edge of text */ variable
762 if ((scr_horz - horiz_offset) > last_col)
764 horiz_offset += 8;
823 if ((scr_horz < horiz_offset) && (horiz_offset > 0))
825 horiz_offset -= 8;
876 wmove(text_win, scr_vert, (scr_horz - horiz_offset));
911 if ((scr_horz - horiz_offset) > last_col)
913 horiz_offset = (scr_horz - (scr_horz % 8)) - (COLS - 8);
916 else if (scr_horz < horiz_offset)
918 horiz_offset = max(0, (scr_horz - (scr_horz % 8)));
[all …]