aboutsummaryrefslogtreecommitdiff
path: root/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'resource.cpp')
-rw-r--r--resource.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/resource.cpp b/resource.cpp
index 5d4c856836..298a7f0a7b 100644
--- a/resource.cpp
+++ b/resource.cpp
@@ -689,6 +689,15 @@ int Scumm::readSoundResource(int type, int idx)
total_size = fileReadDwordBE();
fileRead(_fileHandle, createResource(type, idx, total_size), total_size - 8);
return 1;
+ } else if (basetag == MKID('DIGI')) {
+ // Use in Putt-Putt Demo
+ debug(1, "Found base tag DIGI in sound %d, size %d", idx, total_size);
+ debug(1, "It was at position %d", filePos(_fileHandle));
+
+ fileSeek(_fileHandle, -12, SEEK_CUR);
+ total_size = fileReadDwordBE();
+ fileRead(_fileHandle, createResource(type, idx, total_size), total_size - 8);
+ return 1;
} else {
fprintf(stderr, "WARNING: Unrecognized base tag 0x%08lx in sound %d\n",
basetag, idx);