aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorTravis Howell2004-08-03 10:11:54 +0000
committerTravis Howell2004-08-03 10:11:54 +0000
commit5e7d2494bb65e47326d47ebcec3e6a62193986a0 (patch)
tree566677479bcee6e90dd4a6cf38c7490e6430bd4a /sound
parent2b1c98b6ea067013cc479fedfd2868240eb11343 (diff)
downloadscummvm-rg350-5e7d2494bb65e47326d47ebcec3e6a62193986a0.tar.gz
scummvm-rg350-5e7d2494bb65e47326d47ebcec3e6a62193986a0.tar.bz2
scummvm-rg350-5e7d2494bb65e47326d47ebcec3e6a62193986a0.zip
Update comment
svn-id: r14456
Diffstat (limited to 'sound')
-rw-r--r--sound/voc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/voc.cpp b/sound/voc.cpp
index 0b2adb6d97..007b11ab5d 100644
--- a/sound/voc.cpp
+++ b/sound/voc.cpp
@@ -75,7 +75,8 @@ byte *loadVOCFromStream(Common::ReadStream *stream, int &size, int &rate, int &l
int16 version = FROM_LE_16(fileHeader.version);
int16 code = FROM_LE_16(fileHeader.id);
assert(offset == sizeof(VocFileHeader));
- // 0x100 is an invalid VOC version used by French version of Simon the Sorcerer 2
+ // 0x100 is an invalid VOC version used by German version of DOTT (Disk) and
+ // French version of Simon the Sorcerer 2 (CD)
assert(version == 0x010A || version == 0x0114 || version == 0x0100);
assert(code == ~version + 0x1234);