diff options
Diffstat (limited to 'console-client/vga-dynafont.c')
-rw-r--r-- | console-client/vga-dynafont.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console-client/vga-dynafont.c b/console-client/vga-dynafont.c index 834d0aca..6745e88a 100644 --- a/console-client/vga-dynafont.c +++ b/console-client/vga-dynafont.c @@ -964,9 +964,9 @@ dynafont_set_cursor (dynafont_t df, int standout) if (df == active_dynafont) { if (standout) - vga_set_cursor_size (1, -1); + vga_set_cursor_size (1, height - 1); else - vga_set_cursor_size ((height >= 2) ? height - 2 : 0, -1); + vga_set_cursor_size ((height >= 2) ? height - 2 : 0, height - 1); } } |