diff options
| author | Matthew Hoops | 2011-10-04 12:16:59 -0400 | 
|---|---|---|
| committer | Matthew Hoops | 2011-10-04 12:16:59 -0400 | 
| commit | 3ecc16c9aec6be1853e255f23c610a2dcaaa34d3 (patch) | |
| tree | 038d659431902874d58573ab575156c5433ab105 | |
| parent | cbca2812a8078e1d62dc55db5b6429908da3b9da (diff) | |
| download | scummvm-rg350-3ecc16c9aec6be1853e255f23c610a2dcaaa34d3.tar.gz scummvm-rg350-3ecc16c9aec6be1853e255f23c610a2dcaaa34d3.tar.bz2 scummvm-rg350-3ecc16c9aec6be1853e255f23c610a2dcaaa34d3.zip | |
PEGASUS: Fix playSpotSoundSync playSoundSegment call
| -rw-r--r-- | engines/pegasus/neighborhood/neighborhood.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/pegasus/neighborhood/neighborhood.cpp b/engines/pegasus/neighborhood/neighborhood.cpp index 5076cf5b2c..ed64b3efd7 100644 --- a/engines/pegasus/neighborhood/neighborhood.cpp +++ b/engines/pegasus/neighborhood/neighborhood.cpp @@ -462,7 +462,7 @@ void Neighborhood::playSpotSoundSync(const TimeValue in, const TimeValue out) {  	}  	_spotSounds.stopSound(); -	_spotSounds.playSoundSegment(in * 1000 / 600, out * 1000 / 600); +	_spotSounds.playSoundSegment(in, out);  	while (_spotSounds.isPlaying()) {  		_vm->refreshDisplay(); | 
