summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMiika Pekkarinen <miipekk@ihme.org>2007-04-15 15:38:08 +0000
committerMiika Pekkarinen <miipekk@ihme.org>2007-04-15 15:38:08 +0000
commit1c0f41447ade94e89fa0d773792205ab99a73538 (patch)
treede452a8bdbac0090852f93a170e0d2af59e2c134 /apps
parent947eb50d6486f65db824d833b90801f9eabe6492 (diff)
downloadrockbox-1c0f41447ade94e89fa0d773792205ab99a73538.zip
rockbox-1c0f41447ade94e89fa0d773792205ab99a73538.tar.gz
rockbox-1c0f41447ade94e89fa0d773792205ab99a73538.tar.bz2
rockbox-1c0f41447ade94e89fa0d773792205ab99a73538.tar.xz
Reverted FS#6949 as we have a strict policy against anonymous contributions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13168 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/gui/gwps-common.c7
-rw-r--r--apps/gui/gwps.h1
-rw-r--r--apps/gui/wps_parser.c1
3 files changed, 0 insertions, 9 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index 778c0b0..5b06dd4 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -1175,13 +1175,6 @@ static char *get_token_value(struct gui_wps *gwps,
snprintf(buf, buf_size, "%d", id3->rating);
return buf;
- case WPS_TOKEN_DATABASE_SCORE:
- if (intval)
- *intval = id3->score + 1;
-
- snprintf(buf, buf_size, "%d", id3->score);
- return buf;
-
#if (CONFIG_CODEC == SWCODEC)
case WPS_TOKEN_CROSSFADE:
if (intval)
diff --git a/apps/gui/gwps.h b/apps/gui/gwps.h
index 4f7e9b4..801a379 100644
--- a/apps/gui/gwps.h
+++ b/apps/gui/gwps.h
@@ -166,7 +166,6 @@ enum wps_token_type {
/* Database */
WPS_TOKEN_DATABASE_PLAYCOUNT,
WPS_TOKEN_DATABASE_RATING,
- WPS_TOKEN_DATABASE_SCORE,
/* File */
WPS_TOKEN_FILE_BITRATE,
diff --git a/apps/gui/wps_parser.c b/apps/gui/wps_parser.c
index 588b0d6..2c7a000 100644
--- a/apps/gui/wps_parser.c
+++ b/apps/gui/wps_parser.c
@@ -232,7 +232,6 @@ static const struct wps_tag all_tags[] = {
{ WPS_TOKEN_DATABASE_PLAYCOUNT, "rp", WPS_REFRESH_DYNAMIC, NULL },
{ WPS_TOKEN_DATABASE_RATING, "rr", WPS_REFRESH_DYNAMIC, NULL },
- { WPS_TOKEN_DATABASE_SCORE, "rs", WPS_REFRESH_DYNAMIC, NULL },
#if CONFIG_CODEC == SWCODEC
{ WPS_TOKEN_REPLAYGAIN, "rg", WPS_REFRESH_STATIC, NULL },
{ WPS_TOKEN_CROSSFADE, "xf", WPS_REFRESH_DYNAMIC, NULL },