Mercurial > audlegacy-plugins
changeset 604:967e6adb3e8b trunk
[svn] - Process inline STIL information correctly.
author | nenolod |
---|---|
date | Sat, 03 Feb 2007 20:18:59 -0800 |
parents | 73ae7a6d510e |
children | 6723529fc375 |
files | ChangeLog src/console/Sap_Emu.cxx |
diffstat | 2 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Feb 03 20:06:57 2007 -0800 +++ b/ChangeLog Sat Feb 03 20:18:59 2007 -0800 @@ -1,3 +1,11 @@ +2007-02-04 04:06:57 +0000 William Pitcock <nenolod@sacredspiral.co.uk> + revision [1292] + - don't fill in tuple fields with "". + + trunk/src/console/Audacious_Driver.cxx | 16 ++++++++++++---- + 1 file changed, 12 insertions(+), 4 deletions(-) + + 2007-02-03 16:55:23 +0000 Yoshiki Yazawa <yaz@cc.rim.or.jp> revision [1290] - adaptation for playback API. make cuesheet plugin pass playback->output to real_ip.
--- a/src/console/Sap_Emu.cxx Sat Feb 03 20:06:57 2007 -0800 +++ b/src/console/Sap_Emu.cxx Sat Feb 03 20:18:59 2007 -0800 @@ -201,7 +201,7 @@ static void copy_sap_fields( Sap_Emu::info_t const& in, track_info_t* out ) { - Gme_File::copy_field_( out->game, in.name ); + Gme_File::copy_field_( out->song, in.name ); Gme_File::copy_field_( out->author, in.author ); Gme_File::copy_field_( out->copyright, in.copyright ); }