diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 63c40b13c3..4e4c87989a 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -1735,7 +1735,7 @@ int Sound::VorbisTrackInfo::play(SoundMixer *mixer, int start, int delay) { #ifdef VORBIS_TREMOR ov_time_seek(&_ov_file, (ogg_int64_t)(start / 75.0 * 1000)); #else - ov_time_seek(&_ov_file, (int)(start / 75.0)); + ov_time_seek(&_ov_file, start / 75.0); #endif return mixer->playVorbis(NULL, &_ov_file, delay * ov_info(&_ov_file, -1)->rate / 75, |