aboutsummaryrefslogtreecommitdiff
path: root/scumm/smush/saud_channel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/smush/saud_channel.cpp')
-rw-r--r--scumm/smush/saud_channel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/smush/saud_channel.cpp b/scumm/smush/saud_channel.cpp
index 386c3b7781..994aac64aa 100644
--- a/scumm/smush/saud_channel.cpp
+++ b/scumm/smush/saud_channel.cpp
@@ -52,7 +52,7 @@ bool SaudChannel::handleSubTags(int32 &offset) {
case TYPE_STRK:
_inData = false;
if(available_size >= (size + 8)) {
- ContChunk c((byte *)_tbuffer + offset);
+ MemoryChunk c((byte *)_tbuffer + offset);
handleStrk(c);
}
else
@@ -61,7 +61,7 @@ bool SaudChannel::handleSubTags(int32 &offset) {
case TYPE_SMRK:
_inData = false;
if(available_size >= (size + 8)) {
- ContChunk c((byte *)_tbuffer + offset);
+ MemoryChunk c((byte *)_tbuffer + offset);
handleSmrk(c);
}
else
@@ -70,7 +70,7 @@ bool SaudChannel::handleSubTags(int32 &offset) {
case TYPE_SHDR:
_inData = false;
if(available_size >= (size + 8)) {
- ContChunk c((byte *)_tbuffer + offset);
+ MemoryChunk c((byte *)_tbuffer + offset);
handleShdr(c);
}
else