diff options
author | Martin Kiewitz | 2010-09-04 09:58:37 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-09-04 09:58:37 +0000 |
commit | afada2b60d636e21000e8bde3b760241afb1a223 (patch) | |
tree | 2f65c33ecb980ec668c798fd30d79178955ea006 /engines | |
parent | c34cec4e15a8edac0020ad4c6a291f960632d506 (diff) | |
download | scummvm-rg350-afada2b60d636e21000e8bde3b760241afb1a223.tar.gz scummvm-rg350-afada2b60d636e21000e8bde3b760241afb1a223.tar.bz2 scummvm-rg350-afada2b60d636e21000e8bde3b760241afb1a223.zip |
SCI: fixing comment
svn-id: r52517
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/resource.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/resource.cpp b/engines/sci/resource.cpp index 4aff273610..46fb0fbf99 100644 --- a/engines/sci/resource.cpp +++ b/engines/sci/resource.cpp @@ -2155,7 +2155,7 @@ bool ResourceManager::detectEarlySound() { if (res->size >= 0x22) { if (READ_LE_UINT16(res->data + 0x1f) == 0) // channel 15 voice count + play mask is 0 in SCI0LATE if (res->data[0x21] == 0) // last byte right before actual data is 0 as well - return false; // these 2 bytes are + return false; } } return true; |