IFSSaver: cast to bigtime_t, not uint64

This commit is contained in:
John Scipione
2014-05-15 17:40:50 -04:00
parent fd18c60886
commit 71d273ad49
+1 -1
View File
@@ -150,7 +150,7 @@ IFSSaver::StartSaver(BView* view, bool preview)
float totalSize = mode.timing.h_total * mode.timing.v_total;
float fps = mode.timing.pixel_clock * 1000.0 / totalSize;
SetTickSize((int64)floor(1000000.0 / fps + 0.5));
SetTickSize((bigtime_t)floor(1000000.0 / fps + 0.5));
fIsPreview = preview;
fBounds = view->Bounds();