Modify some initialization slightly to keep MSVC happy
authorJohn Emmas <johne53@tiscali.co.uk>
Mon, 24 Mar 2014 18:48:26 +0000 (18:48 +0000)
committerJohn Emmas <johne53@tiscali.co.uk>
Mon, 24 Mar 2014 18:48:26 +0000 (18:48 +0000)
libs/timecode/timecode/time.h

index ad7af28037de4f4bdcc232d11b246b00adb0368a..5ee763d33e9d3090bae279bd1cf387797647733a 100644 (file)
@@ -69,7 +69,7 @@ struct LIBTIMECODE_API Time {
                frames = 0;
                subframes = 0;
                rate = a_rate;
-               drop = (rintf(100.f * a_rate) == 2997);
+               drop = (lrintf(100.f * (float)a_rate) == (long)2997);
        }
        
        bool operator== (const Time& other) const {