1
0
Fork 0
forked from len0rd/rockbox

ROLO: Ensure messages are not covering each other, change punctuation

Change-Id: I7c9a96afce39d95f120c8349d489f0b649f1ae11
This commit is contained in:
Vencislav Atanasov 2025-07-24 17:08:10 +02:00 committed by Solomon Peachy
parent a901b530e0
commit 843ac237c1

View file

@ -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