aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sfx/core.cpp
diff options
context:
space:
mode:
authorMax Horn2009-03-06 07:25:25 +0000
committerMax Horn2009-03-06 07:25:25 +0000
commit24dac898fe9596ee5d0b3fc5c563694c6e4f8657 (patch)
tree4e6c52c7204c12fe82d6b37329ee812dca23df62 /engines/sci/sfx/core.cpp
parentf8d9e4fdcc6bc2e3eab60b69cb31be070fed73d0 (diff)
downloadscummvm-rg350-24dac898fe9596ee5d0b3fc5c563694c6e4f8657.tar.gz
scummvm-rg350-24dac898fe9596ee5d0b3fc5c563694c6e4f8657.tar.bz2
scummvm-rg350-24dac898fe9596ee5d0b3fc5c563694c6e4f8657.zip
SCI: Converted SongIterator::get_pcm_feed into a virtual method
svn-id: r39150
Diffstat (limited to 'engines/sci/sfx/core.cpp')
-rw-r--r--engines/sci/sfx/core.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/core.cpp b/engines/sci/sfx/core.cpp
index fb83472af2..71eb70a981 100644
--- a/engines/sci/sfx/core.cpp
+++ b/engines/sci/sfx/core.cpp
@@ -342,7 +342,7 @@ int sfx_play_iterator_pcm(SongIterator *it, song_handle_t handle) {
fprintf(stderr, "[sfx-core] Playing PCM: %08lx\n", handle);
#endif
if (g_system->getMixer()->isReady()) {
- Audio::AudioStream *newfeed = it->get_pcm_feed(it);
+ Audio::AudioStream *newfeed = it->get_pcm_feed();
if (newfeed) {
g_system->getMixer()->playInputStream(Audio::Mixer::kSFXSoundType, 0, newfeed);
return 1;