aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorJonathan Gray2003-04-06 23:22:54 +0000
committerJonathan Gray2003-04-06 23:22:54 +0000
commit9bfcce6e7930277d296bb01f36161f7432bc8932 (patch)
tree68ac3d360e790bd8574d1cfff73e70905cddd879 /scumm/sound.cpp
parentb4ef91f6c685205c6b4d7aa53aea675c8e70ad23 (diff)
downloadscummvm-rg350-9bfcce6e7930277d296bb01f36161f7432bc8932.tar.gz
scummvm-rg350-9bfcce6e7930277d296bb01f36161f7432bc8932.tar.bz2
scummvm-rg350-9bfcce6e7930277d296bb01f36161f7432bc8932.zip
remove incorrect cast
svn-id: r6925
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
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,