aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJamieson Christian2003-05-25 02:02:37 +0000
committerJamieson Christian2003-05-25 02:02:37 +0000
commit2824acd4edfe830b90a6030e80939837cca0cb17 (patch)
treeaa75023d1a87f0c47fc7bdcffe9ea12a2fe77750 /scumm
parent4c09e5472f5dfde8947a62e8d8bc074655e2ecd6 (diff)
downloadscummvm-rg350-2824acd4edfe830b90a6030e80939837cca0cb17.tar.gz
scummvm-rg350-2824acd4edfe830b90a6030e80939837cca0cb17.tar.bz2
scummvm-rg350-2824acd4edfe830b90a6030e80939837cca0cb17.zip
Corrected target loopback point for 'AD' conversion
svn-id: r7924
Diffstat (limited to 'scumm')
-rw-r--r--scumm/resource.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 828780c0fa..3fb09eaba7 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -1203,7 +1203,7 @@ int Scumm::readSoundResourceSmallHeader(int type, int idx) {
memcpy(ptr, "\xf0\x13\x7d\x30\00", 5); ptr += 5; // maybe_jump
memcpy(ptr, "\x00\x00", 2); ptr += 2; // cmd -> 0 means always jump
memcpy(ptr, "\x00\x00\x00\x00", 4); ptr += 4; // track -> there is only one track, 0
- memcpy(ptr, "\x00\x00\x00\x00", 4); ptr += 4; // beat -> for now, 0
+ memcpy(ptr, "\x00\x00\x00\x01", 4); ptr += 4; // beat -> for now, 1 (first beat)
// Ticks
*ptr++ = (byte)((jump_offset >> 12) & 0x0F);
*ptr++ = (byte)((jump_offset >> 8) & 0x0F);