SCI: fixing comment

svn-id: r52517
This commit is contained in:
Martin Kiewitz 2010-09-04 09:58:37 +00:00
parent c34cec4e15
commit afada2b60d

View file

@ -2155,7 +2155,7 @@ bool ResourceManager::detectEarlySound() {
if (res->size >= 0x22) { if (res->size >= 0x22) {
if (READ_LE_UINT16(res->data + 0x1f) == 0) // channel 15 voice count + play mask is 0 in SCI0LATE 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 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; return true;