Fix the mistake that led to the reverts

* src/terminal.c (raw_cursor_to): Fix reversed arguments.
This commit is contained in:
Gerd Möllmann 2025-01-25 14:43:17 +01:00
parent 20f2672377
commit 1d08644116

View file

@ -128,7 +128,7 @@ raw_cursor_to (struct frame *f, int row, int col)
if (term->raw_cursor_to_hook)
{
int x, y;
root_xy (f, row, col, &x, &y);
root_xy (f, col, row, &x, &y);
term->raw_cursor_to_hook (f, y, x);
}
}