From cdb7befe8e12c7122cd098762cd7a7b9ad74abb9 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Sat, 16 Nov 2013 11:19:51 -0800 Subject: [PATCH] fix cursor position in interface parameters menu --- src/interface.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/interface.c b/src/interface.c index af640a3d..2cf742fc 100644 --- a/src/interface.c +++ b/src/interface.c @@ -972,7 +972,7 @@ void c_interface_parameters() } pad_string(temp, ' ', 26); - if (i+cur_off != 1) + if (i+cur_off != 2) { c_interface_print(14, 5 + i, 0, temp); } @@ -1005,8 +1005,7 @@ void c_interface_parameters() } else { - video_plotchar( 14 + j, 5+i, option==OPT_PATH, - temp[ j ]); + video_plotchar( 14 + j, 5+i, option==OPT_PATH, temp[ j ]); } }