summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/tree.c3
-rw-r--r--apps/wps.c4
2 files changed, 7 insertions, 0 deletions
diff --git a/apps/tree.c b/apps/tree.c
index 5312885f19..1ac9dc6ef0 100644
--- a/apps/tree.c
+++ b/apps/tree.c
@@ -296,6 +296,9 @@ static int showdir(char *path, int start)
296 296
297bool ask_resume(void) 297bool ask_resume(void)
298{ 298{
299#ifdef HAVE_NEW_CHARCELL_LCD
300 lcd_double_height(false);
301#endif
299 lcd_clear_display(); 302 lcd_clear_display();
300 lcd_puts(0,0,"Resume?"); 303 lcd_puts(0,0,"Resume?");
301#ifdef HAVE_LCD_CHARCELLS 304#ifdef HAVE_LCD_CHARCELLS
diff --git a/apps/wps.c b/apps/wps.c
index 5b30d2ba0e..cab9aec5ef 100644
--- a/apps/wps.c
+++ b/apps/wps.c
@@ -585,6 +585,8 @@ int wps_show(void)
585 mpeg_ff_rewind(ff_rewind_count); 585 mpeg_ff_rewind(ff_rewind_count);
586 ff_rewind_count = 0; 586 ff_rewind_count = 0;
587 ff_rewind = false; 587 ff_rewind = false;
588 mpeg_resume();
589 status_set_playmode(STATUS_PLAY);
588#ifdef HAVE_LCD_CHARCELLS 590#ifdef HAVE_LCD_CHARCELLS
589 draw_screen(id3); 591 draw_screen(id3);
590#endif 592#endif
@@ -618,6 +620,8 @@ int wps_show(void)
618 mpeg_ff_rewind(ff_rewind_count); 620 mpeg_ff_rewind(ff_rewind_count);
619 ff_rewind_count = 0; 621 ff_rewind_count = 0;
620 ff_rewind = false; 622 ff_rewind = false;
623 mpeg_resume();
624 status_set_playmode(STATUS_PLAY);
621#ifdef HAVE_LCD_CHARCELLS 625#ifdef HAVE_LCD_CHARCELLS
622 draw_screen(id3); 626 draw_screen(id3);
623#endif 627#endif