mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
ROLO: Ensure messages are not covering each other, change punctuation
Change-Id: I7c9a96afce39d95f120c8349d489f0b649f1ae11
This commit is contained in:
parent
a901b530e0
commit
843ac237c1
1 changed files with 13 additions and 8 deletions
|
@ -229,13 +229,13 @@ int rolo_load(const char* filename)
|
|||
int err, length;
|
||||
|
||||
lcd_clear_display();
|
||||
lcd_puts(0, 0, "ROLO...");
|
||||
lcd_puts(0, 1, "Loading");
|
||||
lcd_puts(0, 0, "ROLO");
|
||||
lcd_puts(0, 1, "Loading...");
|
||||
lcd_update();
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
lcd_remote_clear_display();
|
||||
lcd_remote_puts(0, 0, "ROLO...");
|
||||
lcd_remote_puts(0, 1, "Loading");
|
||||
lcd_remote_puts(0, 0, "ROLO");
|
||||
lcd_remote_puts(0, 1, "Loading...");
|
||||
lcd_remote_update();
|
||||
#endif
|
||||
|
||||
|
@ -296,20 +296,25 @@ int rolo_load(const char* filename)
|
|||
rolo_restart_cop();
|
||||
/* Wait for COP to be in safe code */
|
||||
while(cpu_reply != 1);
|
||||
lcd_puts(0, 2, " ");
|
||||
lcd_clear_display();
|
||||
lcd_puts(0, 0, "ROLO");
|
||||
lcd_puts(0, 1, "Loading...");
|
||||
lcd_update();
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_STORAGE_FLUSH
|
||||
lcd_puts(0, 1, "Flushing storage buffers");
|
||||
lcd_puts(0, 1, "Flushing storage buffers...");
|
||||
lcd_update();
|
||||
storage_flush();
|
||||
lcd_clear_display();
|
||||
lcd_puts(0, 0, "ROLO");
|
||||
lcd_update();
|
||||
#endif
|
||||
|
||||
lcd_puts(0, 1, "Executing");
|
||||
lcd_puts(0, 1, "Executing...");
|
||||
lcd_update();
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
lcd_remote_puts(0, 1, "Executing");
|
||||
lcd_remote_puts(0, 1, "Executing...");
|
||||
lcd_remote_update();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue