diff options
author | Max Horn | 2009-03-06 07:25:48 +0000 |
---|---|---|
committer | Max Horn | 2009-03-06 07:25:48 +0000 |
commit | 0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884 (patch) | |
tree | ab6169f5dd4c8273bbfd87c740e194ed24276cfd /engines/sci/engine/scriptdebug.cpp | |
parent | 018d19e0204c874a6198fdfe513595c0cf5ac619 (diff) | |
download | scummvm-rg350-0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884.tar.gz scummvm-rg350-0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884.tar.bz2 scummvm-rg350-0f3d67c1ac939bf93b1c9d315e629f1a0cbd0884.zip |
SCI: C++ifyed SongIterator and its subclasses
svn-id: r39152
Diffstat (limited to 'engines/sci/engine/scriptdebug.cpp')
-rw-r--r-- | engines/sci/engine/scriptdebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp index a6a091c3ab..f71b306ae1 100644 --- a/engines/sci/engine/scriptdebug.cpp +++ b/engines/sci/engine/scriptdebug.cpp @@ -2427,7 +2427,7 @@ static int c_is_sample(EngineState *s) { return 1; } - if ((data = songit->get_pcm_feed())) { + if ((data = songit->getAudioStream())) { /* 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); |