summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
Diffstat (limited to 'osdep')
-rw-r--r--osdep/terminal-unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/osdep/terminal-unix.c b/osdep/terminal-unix.c
index 6edea37c74..b3fc734f46 100644
--- a/osdep/terminal-unix.c
+++ b/osdep/terminal-unix.c
@@ -56,8 +56,8 @@ static volatile int tio_orig_set;
int screen_width = 80;
int screen_height = 24;
-char *terminal_erase_to_end_of_line = "\033[A";
-char *terminal_cursor_up = "\033[K";
+char *terminal_erase_to_end_of_line = "\033[K";
+char *terminal_cursor_up = "\033[A";
typedef struct {
char *cap;