diff options
author | sr55 <[email protected]> | 2014-12-18 21:30:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2014-12-18 21:30:24 +0000 |
commit | aee0ccc0e4d624f88c0d7f3effda3a8a085def74 (patch) | |
tree | 8770df03472655675facf0c8cd5e62c72c1c2f06 /win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs | |
parent | 6dac5a9af13ffee95a448cdbe9d1971fb35d3266 (diff) |
WinGui: Update the libhb scan code to work with the updated API. See rev6602 for API changes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6608 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs index e50d5ac1b..6311c79e3 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Scan/LibScan.cs @@ -476,7 +476,7 @@ namespace HandBrake.ApplicationServices.Services.Scan TitleNumber = title.TitleNumber,
Duration = title.Duration,
Resolution = new Size(title.Resolution.Width, title.Resolution.Height),
- AspectRatio = title.AspectRatio,
+ AspectRatio = (decimal)title.AspectRatio,
AngleCount = title.AngleCount,
ParVal = new Size(title.ParVal.Width, title.ParVal.Height),
AutoCropDimensions = title.AutoCropDimensions,
|