diff options
-rw-r--r-- | sound/voc.cpp | 3 |
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); |