aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index c01e96e665..200c2d9367 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -518,11 +518,11 @@ int Sound::startTalkSound(uint32 offset, uint32 b, int mode) {
while (num > 0) {
_sfxFile->read(&file_byte, sizeof(file_byte));
_sfxFile->read(&file_byte_2, sizeof(file_byte_2));
- assert(i < ARRAYSIZE(_mouthSyncTimes));
+ assert(i < (int)ARRAYSIZE(_mouthSyncTimes));
_mouthSyncTimes[i++] = file_byte | (file_byte_2 << 8);
num--;
}
- assert(i < ARRAYSIZE(_mouthSyncTimes));
+ assert(i < (int)ARRAYSIZE(_mouthSyncTimes));
_mouthSyncTimes[i] = 0xFFFF;
_sfxMode |= mode;
_curSoundPos = 0;