summaryrefslogtreecommitdiff
path: root/plugins/gme
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-04-29 22:38:31 +0200
committerGravatar waker <wakeroid@gmail.com>2011-04-29 22:38:31 +0200
commit20627955d1184b5f07b8f7910a59f15cdc4802c8 (patch)
treeafc2111b9d3be287d3e82dcc54b23f84c88e4183 /plugins/gme
parentcec677f6022983afbc144a52eff8a719a1086577 (diff)
changed some API entry points to make it possible working with specific playlists, and not just the current one
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 dee03081..35070d7c 100644
--- a/plugins/gme/cgme.c
+++ b/plugins/gme/cgme.c
@@ -245,7 +245,7 @@ cgme_add_meta (DB_playItem_t *it, const char *key, const char *value) {
}
static DB_playItem_t *
-cgme_insert (DB_playItem_t *after, const char *fname) {
+cgme_insert (ddb_playlist_t *plt, DB_playItem_t *after, const char *fname) {
Music_Emu *emu;
trace ("gme_open_file %s\n", fname);
@@ -351,7 +351,7 @@ cgme_insert (DB_playItem_t *after, const char *fname) {
}
}
}
- after = deadbeef->pl_insert_item (after, it);
+ after = deadbeef->plt_insert_item (plt, after, it);
deadbeef->pl_item_unref (it);
}
else {