diff options
author | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-28 21:46:45 +0000 |
---|---|---|
committer | Rafaël Carré <rafael.carre@gmail.com> | 2010-08-28 21:46:45 +0000 |
commit | ab9fd1840b8025336081bd72fb9dbaea7b9909dd (patch) | |
tree | 4c410bffcf1a9de2ce55a59bef45e3ecfa183a62 /apps/plugins/vbrfix.c | |
parent | 8418a2c94a97da1d6f42f21dc348aadd1e177d77 (diff) |
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/vbrfix.c')
-rw-r--r-- | apps/plugins/vbrfix.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/apps/plugins/vbrfix.c b/apps/plugins/vbrfix.c index 71c502bc67..98ca15b6a8 100644 --- a/apps/plugins/vbrfix.c +++ b/apps/plugins/vbrfix.c @@ -29,10 +29,7 @@ char tmpname[MAX_PATH]; static void xingupdate(int percent) { - char buf[32]; - - rb->snprintf(buf, 32, "%d%%", percent); - rb->lcd_puts(0, 1, buf); + rb->lcd_putsf(0, 1, "%d%%", percent); rb->lcd_update(); } |