1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-07 02:54:19 -04:00

Modify term_move to accept only non negative coordinates.

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4380 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Emanuele Giaquinta 2006-09-24 21:06:46 +00:00 committed by exg
parent 9070ecdcf7
commit da9582e5aa

View File

@ -354,6 +354,7 @@ void term_set_color(TERM_WINDOW *window, int col)
void term_move(TERM_WINDOW *window, int x, int y)
{
if (x >= 0 && y >= 0) {
vcmove = TRUE;
vcx = x+window->x;
vcy = y+window->y;
@ -362,6 +363,7 @@ void term_move(TERM_WINDOW *window, int x, int y)
vcx = term_width-1;
if (vcy >= term_height)
vcy = term_height-1;
}
}
static void term_printed_text(int count)