diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-04-24 06:45:27 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-04-24 06:45:27 +0000 |
commit | 1aae0a0e8c09c4b95da0d94f44ad1524f6f2d8c1 (patch) | |
tree | 32c230ad3bac637958107c2e0d4ef4941bb934a7 | |
parent | 5074ec00371a3681f380fd3e1a0f912a241deeb4 (diff) |
Show RoLo messages on remote.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9787 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/rolo.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/firmware/rolo.c b/firmware/rolo.c index 664c67c16f..afd2ebf694 100644 --- a/firmware/rolo.c +++ b/firmware/rolo.c @@ -19,6 +19,7 @@ #include "config.h" #include "lcd.h" +#include "lcd-remote.h" #include "kernel.h" #include "sprintf.h" #include "button.h" @@ -106,6 +107,12 @@ int rolo_load(const char* filename) 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_update(); +#endif audio_stop(); @@ -143,8 +150,12 @@ int rolo_load(const char* filename) return -1; } - lcd_puts(0, 1, "Executing "); + lcd_puts(0, 1, "Executing"); lcd_update(); +#ifdef HAVE_REMOTE_LCD + lcd_remote_puts(0, 1, "Executing"); + lcd_remote_update(); +#endif set_irq_level(HIGHEST_IRQ_LEVEL); #elif CONFIG_CPU == SH7034 |