diff options
author | Martin Kiewitz | 2010-06-09 20:32:55 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-09 20:32:55 +0000 |
commit | e533289e07f9bbbc195d91619582df6eca39ec2a (patch) | |
tree | bf50d5f3e9daf458a3f4f13a3866629300d75d00 /engines/sci | |
parent | 5d71ae952f47084da758cb5d2df0e53a6c663111 (diff) | |
download | scummvm-rg350-e533289e07f9bbbc195d91619582df6eca39ec2a.tar.gz scummvm-rg350-e533289e07f9bbbc195d91619582df6eca39ec2a.tar.bz2 scummvm-rg350-e533289e07f9bbbc195d91619582df6eca39ec2a.zip |
SCI: document raw lipsync data skipping in readAudioMapSCI11()
svn-id: r49550
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/resource_audio.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/resource_audio.cpp b/engines/sci/resource_audio.cpp index 57efbdcb38..2a5b56d4bc 100644 --- a/engines/sci/resource_audio.cpp +++ b/engines/sci/resource_audio.cpp @@ -334,6 +334,8 @@ int ResourceManager::readAudioMapSCI11(ResourceSource *map) { } if (n & 0x40) { + // This seems to define the size of raw lipsync data (at least in kq6), may also just be general appended + // data syncSize += READ_LE_UINT16(ptr); ptr += 2; } |