summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2010-04-12 19:24:05 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2010-04-12 19:24:05 +0000
commit199f3bd7c205769256037f021162801c93faee9f (patch)
tree65e3a68e0454e3b24a21cab0932c8181d2e13aa8 /apps
parent1dc8320f2cb4ad37f98360a1497c825c4628bb9e (diff)
Text viewer: Remove unused max_line_len variable
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25610 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/viewer.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c
index a6f1bf1b5d..618da50807 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -614,7 +614,6 @@ static bool mac_text;
static long file_pos; /* Position of the top of the buffer in the file */
static long last_file_pos;
static unsigned char *buffer_end; /*Set to BUFFER_END() when file_pos changes*/
-static int max_line_len;
static int max_width;
static int max_columns;
static int cline = 1;
@@ -1352,7 +1351,6 @@ static void viewer_draw(int col)
#endif
rb->lcd_clear_display();
}
- max_line_len = 0;
line_begin = line_end = screen_top_ptr;
for (i = 0; i < display_lines; i++) {
@@ -1585,8 +1583,6 @@ static void viewer_draw(int col)
rb->lcd_puts(left_col+1, i, utf8_buffer);
#endif
}
- if (line_width > max_line_len)
- max_line_len = line_width;
if (i == 0)
next_line_ptr = line_end;