summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/menu.c
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-08-28 21:46:45 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-08-28 21:46:45 +0000
commitab9fd1840b8025336081bd72fb9dbaea7b9909dd (patch)
tree4c410bffcf1a9de2ce55a59bef45e3ecfa183a62 /apps/plugins/rockboy/menu.c
parent8418a2c94a97da1d6f42f21dc348aadd1e177d77 (diff)
downloadrockbox-ab9fd1840b8025336081bd72fb9dbaea7b9909dd.tar.gz
rockbox-ab9fd1840b8025336081bd72fb9dbaea7b9909dd.zip
plugins: use lcd_putsf/lcd_putsxyf
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27926 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockboy/menu.c')
-rw-r--r--apps/plugins/rockboy/menu.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/rockboy/menu.c b/apps/plugins/rockboy/menu.c
index 6e8df5c0ea..242518c01e 100644
--- a/apps/plugins/rockboy/menu.c
+++ b/apps/plugins/rockboy/menu.c
@@ -171,7 +171,7 @@ static void build_slot_path(char *buf, size_t bufsiz, int slot_id) {
171 * 171 *
172 */ 172 */
173static bool do_file(char *path, char *desc, bool is_load) { 173static bool do_file(char *path, char *desc, bool is_load) {
174 char buf[200], desc_buf[20]; 174 char desc_buf[20];
175 int fd, file_mode; 175 int fd, file_mode;
176 176
177 /* set file mode */ 177 /* set file mode */
@@ -191,8 +191,7 @@ static bool do_file(char *path, char *desc, bool is_load) {
191 loadstate(fd); 191 loadstate(fd);
192 192
193 /* print out a status message so the user knows the state loaded */ 193 /* print out a status message so the user knows the state loaded */
194 snprintf(buf, 200, "Loaded state from \"%s\"", path); 194 rb->splashf(HZ * 1, "Loaded state from \"%s\"", path);
195 rb->splash(HZ * 1, buf);
196 } 195 }
197 else 196 else
198 { 197 {