diff options
author | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 07:11:18 +0000 |
---|---|---|
committer | Justin Heiner <jheiner@rockbox.org> | 2002-08-30 07:11:18 +0000 |
commit | 9b62c23d8f59483961355fbd2841d3a2d4e0616b (patch) | |
tree | 54ce557530fc174a9670b2e9d5cb45c74bceb0bb /apps/wps.h | |
parent | 98cb63629b2eb76b49b21ccf60fcd7e743897145 (diff) | |
download | rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.tar.gz rockbox-9b62c23d8f59483961355fbd2841d3a2d4e0616b.zip |
Got rid of the old WPS, and use Custom WPS as the method of WPS updating. Also working on a player progress bar (using a custom character). That is now able to be #included with -DPLAYER_PROGRESS in the apps/Makefile
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2074 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/wps.h')
-rw-r--r-- | apps/wps.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/wps.h b/apps/wps.h index d181273408..a1feacd1e6 100644 --- a/apps/wps.h +++ b/apps/wps.h @@ -25,10 +25,12 @@ extern bool keys_locked; int wps_show(void); -#ifdef CUSTOM_WPS bool load_custom_wps(void); bool display_custom_wps(int x_val, int y_val, bool do_scroll, char *wps_string); bool refresh_wps(bool refresh_scroll); + +#ifdef PLAYER_PROGRESS +void draw_player_progress(int x, int y); #endif #endif |