yaft: disable unused dcs functions

Origin commit data
------------------
Branch: ni/coolstream
Commit: d4a5e87146
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2018-01-15 (Mon, 15 Jan 2018)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Stefan Seyfried
2018-01-15 19:54:51 +01:00
committed by vanhofen
parent a6ab029502
commit 4bca77d7d1
4 changed files with 11 additions and 0 deletions

View File

@@ -8,7 +8,9 @@ void erase_cell(struct terminal_t *term, int y, int x)
cellp->color_pair = term->color_pair; /* bce */
cellp->attribute = ATTR_RESET;
cellp->width = HALF;
#if 0
cellp->has_pixmap = false;
#endif
term->line_dirty[y] = true;
}
@@ -54,7 +56,9 @@ int set_cell(struct terminal_t *term, int y, int x, const struct glyph_t *glyphp
cell.attribute = term->attribute;
cell.width = (glyph_width)glyphp->width;
#if 0
cell.has_pixmap = false;
#endif
cellp = &term->cells[y][x];
*cellp = cell;