changeset 32961:323f96e59820

Make constants explicitly type float.
author ib
date Tue, 08 Mar 2011 11:08:28 +0000
parents 06d7501e046f
children 59f89e650306
files gui/mplayer/play.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/gui/mplayer/play.c	Tue Mar 08 11:06:27 2011 +0000
+++ b/gui/mplayer/play.c	Tue Mar 08 11:08:28 2011 +0000
@@ -190,7 +190,7 @@
     if (guiIntfStruct.StreamType == STREAMTYPE_STREAM)
         return;
 
-    rel_seek_secs = 0.01 * s;   // 0.0..100.0
+    rel_seek_secs = 0.01f * s;   // 0.0..100.0
     abs_seek_pos  = 3;
 }