summaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-25 11:13:46 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-25 11:13:46 +0000
commit9a3dde0f53fbd61ef236e9b6a844b28166c22921 (patch)
treea5c4027881266dd2a7c7f0b99bad0f68ef18e47b /screen.c
parent0f0dd4a56605f28106d2c7c8a64969a5e5fd25a5 (diff)
Oops, use correct y.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index a48a84a2..a1f4fcad 100644
--- a/screen.c
+++ b/screen.c
@@ -1,4 +1,4 @@
-/* $Id: screen.c,v 1.45 2007-11-25 10:56:22 nicm Exp $ */
+/* $Id: screen.c,v 1.46 2007-11-25 11:13:46 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -461,7 +461,7 @@ screen_draw_line(struct screen_draw_ctx *ctx, u_int py)
screen_draw_cells(ctx, 0, py, screen_size_x(ctx->s));
else {
screen_draw_cells(ctx, 0, py, cx);
- screen_draw_move(ctx, cx, cy);
+ screen_draw_move(ctx, cx, py);
input_store_zero(ctx->b, CODE_CLEARENDOFLINE);
}
}