diff options
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r-- | scumm/sound.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index cad6bcfa89..13ca9a043a 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -68,7 +68,7 @@ void Sound::addSoundToQueue2(int sound) { } void Sound::processSoundQues() { - byte d; + int d; int i, j; int num; int16 data[16]; @@ -597,7 +597,7 @@ void Sound::stopSound(int a) { } for (i = 0; i < 10; i++) - if (_soundQue2[i] == (byte)a) + if (_soundQue2[i] == a) _soundQue2[i] = 0; } |