commit 8cd87d4da376ff1da1cbad48cdf79bfaaf7e0e90 parent 448727f8d0e3ac5e675d6b822f4cabde048b0538 Author: Toni Ruottu <toni.ruottu@helsinki.fi> Date: Sun, 7 Jan 2007 20:19:38 +0000 Added dependency detection for Compute! Sidplayer and PlaySID Diffstat:
| M | src/plugins/sidextractor.c | | | 16 | ++++++++++++++++ |
1 file changed, 16 insertions(+), 0 deletions(-)
diff --git a/src/plugins/sidextractor.c b/src/plugins/sidextractor.c @@ -183,6 +183,22 @@ struct EXTRACTOR_Keywords * libextractor_sid_extract flags = sidword( head->flags ); + + /* MUS data */ + + if( flags & MUSPLAYER_FLAG ) + { + prev = addkword( prev, "Compute!'s Sidplayer", EXTRACTOR_DEPENDENCY ); + } + + /* PlaySID data */ + + if( flags & PLAYSID_FLAG ) + { + prev = addkword( prev, "PlaySID", EXTRACTOR_DEPENDENCY ); + } + + /* PAL or NTSC */ if( flags & PAL_FLAG )