diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-30 11:10:08 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2005-08-30 11:10:08 +0000 |
| commit | f43216ff0bc6fdf7c2339aefc6c56be09249ce06 (patch) | |
| tree | 04f30ecbf442f66971ebb432c3382119f8238651 /apps/menu.h | |
| parent | 5efbdb76aa15dc86f2158912b23ad64111ed0b90 (diff) | |
| download | rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.zip rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.gz rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.bz2 rockbox-f43216ff0bc6fdf7c2339aefc6c56be09249ce06.tar.xz | |
Removed the line selector option, it is now always an inverse bar (except for the Player/Studio of course)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7423 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menu.h')
| -rw-r--r-- | apps/menu.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/menu.h b/apps/menu.h index a378bd8..d8d9386 100644 --- a/apps/menu.h +++ b/apps/menu.h @@ -91,7 +91,11 @@ int menu_init(const struct menu_item* mitems, int count, int (*callback)(int, in const char *button1, const char *button2, const char *button3); void menu_exit(int menu); +#ifdef HAVE_LCD_CHARCELLS void put_cursorxy(int x, int y, bool on); +#else +#define put_cursorxy(...) +#endif /* Returns below define, or number of selected menu item*/ int menu_show(int m); |