summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs
index fbe8e8532..57201e847 100644
--- a/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/SourceData/Title.cs
@@ -140,7 +140,7 @@ namespace HandBrake.Interop.SourceData
{
get
{
- return (int)Math.Ceiling(((double)this.Duration.TotalSeconds) * this.Framerate);
+ return (int)Math.Ceiling(this.Duration.TotalSeconds * this.Framerate);
}
}