comparison src/musepack/libmpc.cxx @ 2055:2f2ffbc2d04d

gentitle changes
author William Pitcock <nenolod@atheme.org>
date Sat, 13 Oct 2007 20:43:07 -0500
parents 8f3188746b64
children ac599b9b0490
comparison
equal deleted inserted replaced
2054:f7deb2ae6f0a 2055:2f2ffbc2d04d
741 741
742 static char* mpcGenerateTitle(const MpcInfo& p_Tags, char* p_Filename) 742 static char* mpcGenerateTitle(const MpcInfo& p_Tags, char* p_Filename)
743 { 743 {
744 Tuple* tuple = mpcGetSongTuple(p_Filename); 744 Tuple* tuple = mpcGetSongTuple(p_Filename);
745 745
746 char* title = aud_tuple_formatter_make_title_string(tuple, get_gentitle_format()); 746 char* title = aud_tuple_formatter_make_title_string(tuple, aud_get_gentitle_format());
747 747
748 aud_tuple_free((void *) tuple); 748 aud_tuple_free((void *) tuple);
749 return title; 749 return title;
750 } 750 }
751 751