term_erase(): replace coord-typed arguments with regular ints

This commit is contained in:
Daniel Eklöf 2021-12-25 19:12:51 +01:00
parent 366da7349c
commit 39bb6be8bf
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 52 additions and 49 deletions

View file

@ -713,7 +713,9 @@ void term_damage_scroll(
struct scroll_region region, int lines);
void term_erase(
struct terminal *term, const struct coord *start, const struct coord *end);
struct terminal *term,
int start_row, int start_col,
int end_row, int end_col);
void term_erase_scrollback(struct terminal *term);
int term_row_rel_to_abs(const struct terminal *term, int row);