Home
last modified time | relevance | path

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

/haiku/src/tests/apps/miniterminal/
H A DConsole.cpp237 Console::GotoXY(int new_x, int new_y) in GotoXY() argument
243 if (new_y >= fLines) in GotoXY()
244 new_y = fLines - 1; in GotoXY()
245 if (new_y < 0) in GotoXY()
246 new_y = 0; in GotoXY()
249 fY = new_y; in GotoXY()
H A DConsole.h60 void GotoXY(int new_x, int new_y);