summaryrefslogtreecommitdiff
path: root/src/z-term.c
diff options
context:
space:
mode:
authorBardur Arantsson <bardur@scientician.net>2014-07-04 20:49:37 +0200
committerBardur Arantsson <bardur@scientician.net>2014-07-04 20:49:37 +0200
commit4f0516c42de23fedbd77e78b563b5b63c99a7bdc (patch)
tree5e9c0eea06eed3a62d1025fa34071cfcc2823e9b /src/z-term.c
parent25f27454b680ae37439ef2f573988f74ebbb90e6 (diff)
Remove TERM_XTRA_FROSH
Diffstat (limited to 'src/z-term.c')
-rw-r--r--src/z-term.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/z-term.c b/src/z-term.c
index d1cec6f5..c431f6c0 100644
--- a/src/z-term.c
+++ b/src/z-term.c
@@ -617,9 +617,7 @@ static void Term_fresh_row_text(int y, int x1, int x2)
* Note that "Term_xtra(TERM_XTRA_CLEAR,0)" must erase the entire screen,
* including the cursor, if needed, and may place the cursor anywhere.
*
- * Note that "Term_xtra(TERM_XTRA_FROSH,y)" will be always be called
- * after any row "y" has been "flushed", unless the "Term->never_frosh"
- * flag is set, and "Term_xtra(TERM_XTRA_FRESH,0)" will be called after
+ * Note that "Term_xtra(TERM_XTRA_FRESH,0)" will be called after
* all of the rows have been "flushed".
*
* The helper functions currently "skip" any grids which already contain
@@ -837,9 +835,6 @@ errr Term_fresh(void)
/* This row is all done */
Term->x1[y] = w;
Term->x2[y] = 0;
-
- /* Hack -- Flush that row (if allowed) */
- if (!Term->never_frosh) Term_xtra(TERM_XTRA_FROSH, y);
}
}