mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-30 23:43:10 +00:00
Oops, that was the wrong data type. (Not that it should matter, but...)
svn-id: r12069
This commit is contained in:
parent
f845008972
commit
033a847e77
@ -980,7 +980,7 @@ void Sound::updateCompSampleStreaming(int16 *data, uint len) {
|
||||
if (!_music[i]._streaming || _music[i]._paused)
|
||||
continue;
|
||||
|
||||
st_sample_t volume = _musicMuted ? 0 : musicVolTable[_musicVol];
|
||||
st_volume_t volume = _musicMuted ? 0 : musicVolTable[_musicVol];
|
||||
|
||||
fpMus.seek(_music[i]._filePos, SEEK_SET);
|
||||
_converter->flow(_music[i], data, len, volume, volume);
|
||||
|
Loading…
x
Reference in New Issue
Block a user