Ooops... forgot about those charcells
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11631 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
0f02e4f7a0
commit
7c53722535
1 changed files with 4 additions and 1 deletions
|
@ -173,8 +173,9 @@ static bool _dir_properties(DPS* dps)
|
|||
rb->snprintf(dps->tstr, 64, "Size: %s",
|
||||
filesize2string(dps->bc, dps->tstr2, 64));
|
||||
rb->lcd_puts(0,5,dps->tstr);
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
rb->lcd_update();
|
||||
|
||||
#endif
|
||||
/* recursion */
|
||||
result = _dir_properties(dps);
|
||||
if(rb->get_action(CONTEXT_TREE,TIMEOUT_NOBLOCK))
|
||||
|
@ -303,7 +304,9 @@ enum plugin_status plugin_start(struct plugin_api* api, void* file)
|
|||
rb->lcd_clear_display();
|
||||
rb->lcd_puts(0,0,"File/Dir not found:");
|
||||
rb->lcd_puts(0,1,(char*)file);
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
rb->lcd_update();
|
||||
#endif
|
||||
rb->action_userabort(TIMEOUT_BLOCK);
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue