another mistake

This commit is contained in:
Andrew Pamment 2017-03-26 21:31:17 +10:00
parent 457da92204
commit 3b1add6a40

View File

@ -476,10 +476,10 @@ char *message_editor() {
position_x++; position_x++;
} }
} }
od_set_cursor(position_y + top_of_screen + 3 - 1, 1); od_set_cursor(position_y - top_of_screen + 3 - 1, 1);
od_printf("%s", body_lines[position_y - 1]); od_printf("%s", body_lines[position_y - 1]);
od_clr_line(); od_clr_line();
od_set_cursor(position_y + top_of_screen + 3, 1); od_set_cursor(position_y - top_of_screen + 3, 1);
od_printf("%s", line); od_printf("%s", line);
od_clr_line(); od_clr_line();
break; break;