SCI: Converted SongIterator::get_pcm_feed into a virtual method

svn-id: r39150
This commit is contained in:
Max Horn 2009-03-06 07:25:25 +00:00
parent f8d9e4fdcc
commit 24dac898fe
5 changed files with 103 additions and 91 deletions

View file

@ -2427,7 +2427,7 @@ static int c_is_sample(EngineState *s) {
return 1;
}
if ((data = songit->get_pcm_feed(songit))) {
if ((data = songit->get_pcm_feed())) {
/*
sciprintf("\nIs sample (encoding %dHz/%s/%04x).\n", data->conf.rate, (data->conf.stereo) ?
((data->conf.stereo == SFX_PCM_STEREO_LR) ? "stereo-LR" : "stereo-RL") : "mono", data->conf.format);