diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-11-22 21:20:54 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-11-22 21:20:54 +0000 |
| commit | d4e53976d91eab4746d286b89a36bc05c767ede2 (patch) | |
| tree | 845663e7670e9b9ec677e8aeede82c309d771a9b /apps | |
| parent | 011835dec37c49dab5f4e374f6d11ec326fbc67f (diff) | |
| download | rockbox-d4e53976d91eab4746d286b89a36bc05c767ede2.zip rockbox-d4e53976d91eab4746d286b89a36bc05c767ede2.tar.gz rockbox-d4e53976d91eab4746d286b89a36bc05c767ede2.tar.bz2 rockbox-d4e53976d91eab4746d286b89a36bc05c767ede2.tar.xz | |
Renamed has_new_lcd() to is_new_player(), and got rid of the alias
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5459 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/wps-display.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/wps-display.c b/apps/wps-display.c index 5ad8b18..90fec56 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -461,7 +461,7 @@ static char* get_tag(struct mp3entry* cid3, #endif case 'f': /* full-line progress bar */ #ifdef HAVE_LCD_CHARCELLS - if(has_new_lcd()) { + if(is_new_player()) { *flags |= WPS_REFRESH_PLAYER_PROGRESS; *flags |= WPS_REFRESH_DYNAMIC; full_line_progressbar=1; |