Show RoLo messages on remote.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9787 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5074ec0037
commit
1aae0a0e8c
1 changed files with 12 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#include "lcd.h"
|
#include "lcd.h"
|
||||||
|
#include "lcd-remote.h"
|
||||||
#include "kernel.h"
|
#include "kernel.h"
|
||||||
#include "sprintf.h"
|
#include "sprintf.h"
|
||||||
#include "button.h"
|
#include "button.h"
|
||||||
|
@ -106,6 +107,12 @@ int rolo_load(const char* filename)
|
||||||
lcd_puts(0, 0, "ROLO...");
|
lcd_puts(0, 0, "ROLO...");
|
||||||
lcd_puts(0, 1, "Loading");
|
lcd_puts(0, 1, "Loading");
|
||||||
lcd_update();
|
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();
|
audio_stop();
|
||||||
|
|
||||||
|
@ -143,8 +150,12 @@ int rolo_load(const char* filename)
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
lcd_puts(0, 1, "Executing ");
|
lcd_puts(0, 1, "Executing");
|
||||||
lcd_update();
|
lcd_update();
|
||||||
|
#ifdef HAVE_REMOTE_LCD
|
||||||
|
lcd_remote_puts(0, 1, "Executing");
|
||||||
|
lcd_remote_update();
|
||||||
|
#endif
|
||||||
|
|
||||||
set_irq_level(HIGHEST_IRQ_LEVEL);
|
set_irq_level(HIGHEST_IRQ_LEVEL);
|
||||||
#elif CONFIG_CPU == SH7034
|
#elif CONFIG_CPU == SH7034
|
||||||
|
|
Loading…
Reference in a new issue