Playlist, Song: clarify parameter encoding

This commit is contained in:
Max Kellermann
2013-01-18 15:33:34 +01:00
parent 21fe376d1d
commit 8901514506
6 changed files with 15 additions and 15 deletions

View File

@@ -59,9 +59,9 @@ playlist::Clear(player_control &pc)
enum playlist_result
playlist::AppendFile(struct player_control &pc,
const char *path_fs, unsigned *added_id)
const char *path_utf8, unsigned *added_id)
{
struct song *song = song_file_load(path_fs, NULL);
struct song *song = song_file_load(path_utf8, NULL);
if (song == NULL)
return PLAYLIST_RESULT_NO_SUCH_SONG;