mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
plugins: use lcd_putsf/lcd_putsxyf
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
8418a2c94a
commit
ab9fd1840b
52 changed files with 173 additions and 412 deletions
|
@ -701,10 +701,9 @@ enum plugin_status plugin_start(const void* parameter)
|
|||
if (t_disp == DISP_TIME)
|
||||
{
|
||||
rb->lcd_puts(5, 0, axes[curr].label);
|
||||
rb->snprintf(buffer, sizeof(buffer), "%d %c",
|
||||
rb->lcd_putsf(5, 1, "%d %c",
|
||||
paused ? axes[curr].angle : axes[curr].speed,
|
||||
highspeed ? 'H' : ' ');
|
||||
rb->lcd_puts(5, 1, buffer);
|
||||
}
|
||||
t_disp--;
|
||||
if (t_disp == 0)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue