summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/tree.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/tree.c b/apps/tree.c
index bd2f8c2a2b..9df16a6344 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -688,7 +688,9 @@ static int onplay_screen(char* dir, char* file)
688 LCD_WIDTH/2 + 8, LCD_HEIGHT/2 - 4, 7, 8, true); 688 LCD_WIDTH/2 + 8, LCD_HEIGHT/2 - 4, 7, 8, true);
689 } 689 }
690 690
691 lcd_putsxy(0, LCD_HEIGHT/2 - h/2, str(LANG_RENAME)); 691 ptr = str(LANG_RENAME);
692 lcd_getstringsize(ptr,&w,&h);
693 lcd_putsxy(0, LCD_HEIGHT/2 - h/2, ptr);
692 lcd_bitmap(bitmap_icons_7x8[Icon_FastBackward], 694 lcd_bitmap(bitmap_icons_7x8[Icon_FastBackward],
693 LCD_WIDTH/2 - 16, LCD_HEIGHT/2 - 4, 7, 8, true); 695 LCD_WIDTH/2 - 16, LCD_HEIGHT/2 - 4, 7, 8, true);
694 } 696 }