From 423094cd5f624feb259a0c6cbfefd269553ef44d Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 7 Jan 2010 15:11:46 +0000 Subject: Fix warning svn-id: r47119 --- sound/vorbis.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sound/vorbis.cpp') diff --git a/sound/vorbis.cpp b/sound/vorbis.cpp index e6da9eaf6d..55c676cfed 100644 --- a/sound/vorbis.cpp +++ b/sound/vorbis.cpp @@ -134,7 +134,7 @@ VorbisInputStream::VorbisInputStream(Common::SeekableReadStream *inStream, bool #ifdef USE_TREMOR _length = Timestamp(ov_time_total(&_ovFile, -1), getRate()); #else - _length = Timestamp(ov_time_total(&_ovFile, -1) * 1000.0, getRate()); + _length = Timestamp(uint32(ov_time_total(&_ovFile, -1) * 1000.0), getRate()); #endif // Read in initial data -- cgit v1.2.3