mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-13 15:12:30 -05:00
Code policy...
Removed tokentool for now since this is not the proper place, but what is? git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6383 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
388d9ff6a3
commit
ec407a86a7
7 changed files with 329 additions and 417 deletions
|
|
@ -25,15 +25,15 @@
|
|||
extern int w, h, y;
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
#define PUTS(str) do { \
|
||||
rb->lcd_putsxy(1, y, str); \
|
||||
rb->lcd_getstringsize(str, &w, &h); \
|
||||
y += h + 1; \
|
||||
rb->lcd_putsxy(1, y, str); \
|
||||
rb->lcd_getstringsize(str, &w, &h); \
|
||||
y += h + 1; \
|
||||
} while (0); \
|
||||
rb->lcd_update()
|
||||
#else
|
||||
#define PUTS(str) do { \
|
||||
rb->lcd_puts(0, y, str); \
|
||||
y = (y + 1) % 2; \
|
||||
rb->lcd_puts(0, y, str); \
|
||||
y = (y + 1) % 2; \
|
||||
} while (0);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue