summaryrefslogtreecommitdiff
path: root/plugins/gme
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-05-08 21:14:30 +0200
committerGravatar waker <wakeroid@gmail.com>2011-05-08 21:14:30 +0200
commit3ec7a3d62a7383f19d4d4ee68ea9f0c66c9fe970 (patch)
treee7f95127ad480f446c10c81ffe220e581622e8e2 /plugins/gme
parentb5ffaa4ae71ce0520d55b99e0501b92c031e860e (diff)
changed few old-style pl_* functions which were working with current playlist with the new ones, working with specific playlist passed as argument
Diffstat (limited to 'plugins/gme')
-rw-r--r--plugins/gme/cgme.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gme/cgme.c b/plugins/gme/cgme.c
index 35070d7c..57788851 100644
--- a/plugins/gme/cgme.c
+++ b/plugins/gme/cgme.c
@@ -333,10 +333,10 @@ cgme_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) {
cgme_add_meta (it, "track", trk);
if (inf->length == -1 || inf->length == 0) {
float songlength = deadbeef->conf_get_float ("gme.songlength", 3);
- deadbeef->pl_set_item_duration (it, songlength * 60.f);
+ deadbeef->plt_set_item_duration (plt, it, songlength * 60.f);
}
else {
- deadbeef->pl_set_item_duration (it, (float)inf->length/1000.f);
+ deadbeef->plt_set_item_duration (plt, it, (float)inf->length/1000.f);
}
const char *ext = fname + strlen (fname) - 1;
while (ext >= fname && *ext != '.') {