aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/sound_ns.cpp
diff options
context:
space:
mode:
authorMax Horn2010-01-23 13:34:29 +0000
committerMax Horn2010-01-23 13:34:29 +0000
commitb036392a7b1c49a3a9d1ac0d0dd035feb7063058 (patch)
treefe364e82b44df12bfd9acfd1b3726a25c0f4f02c /engines/parallaction/sound_ns.cpp
parent7eb407be80857b27c718e4e6f22de61c4d88b183 (diff)
downloadscummvm-rg350-b036392a7b1c49a3a9d1ac0d0dd035feb7063058.tar.gz
scummvm-rg350-b036392a7b1c49a3a9d1ac0d0dd035feb7063058.tar.bz2
scummvm-rg350-b036392a7b1c49a3a9d1ac0d0dd035feb7063058.zip
Get rid of deprecated makeRawDiskStream variants; rename deprecated makeRawMemoryStream variant to makeRawMemoryStream_OLD; adapt some code to this change
svn-id: r47472
Diffstat (limited to 'engines/parallaction/sound_ns.cpp')
-rw-r--r--engines/parallaction/sound_ns.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/sound_ns.cpp b/engines/parallaction/sound_ns.cpp
index 303d323265..07a7ab7828 100644
--- a/engines/parallaction/sound_ns.cpp
+++ b/engines/parallaction/sound_ns.cpp
@@ -377,7 +377,7 @@ Audio::AudioStream *AmigaSoundMan_ns::loadChannelData(const char *filename, Chan
if (!scumm_stricmp("beep", filename)) {
int rate = 11934;
ch->volume = 160;
- input = Audio::makeRawMemoryStream((byte *)beepSoundBuffer, beepSoundBufferSize, DisposeAfterUse::NO, rate, 0, 0, 0);
+ input = Audio::makeRawMemoryStream((byte *)beepSoundBuffer, beepSoundBufferSize, DisposeAfterUse::NO, rate, 0);
} else {
Common::SeekableReadStream *stream = _vm->_disk->loadSound(filename);
input = Audio::make8SVXStream(*stream, looping);