[Scummvm-cvs-logs] SF.net SVN: scummvm:[47119] scummvm/trunk/sound/vorbis.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Thu Jan 7 16:11:47 CET 2010


Revision: 47119
          http://scummvm.svn.sourceforge.net/scummvm/?rev=47119&view=rev
Author:   fingolfin
Date:     2010-01-07 15:11:46 +0000 (Thu, 07 Jan 2010)

Log Message:
-----------
Fix warning

Modified Paths:
--------------
    scummvm/trunk/sound/vorbis.cpp

Modified: scummvm/trunk/sound/vorbis.cpp
===================================================================
--- scummvm/trunk/sound/vorbis.cpp	2010-01-07 15:07:36 UTC (rev 47118)
+++ scummvm/trunk/sound/vorbis.cpp	2010-01-07 15:11:46 UTC (rev 47119)
@@ -134,7 +134,7 @@
 #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


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list