diff options
author | sr55 <[email protected]> | 2018-04-13 23:53:21 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-04-13 23:53:21 +0100 |
commit | 4a7b5ca4d1def12f92d6e0d91e4f6f8da599c67a (patch) | |
tree | f8c102036c33b7c652f3a2fd90914668422141ea /win/CS/HandBrakeWPF/Services | |
parent | 7cf1ae10b99c1878c12e7b277e55a45c5110662b (diff) |
WinGui: Tidy up the build system by removing x86 build profiles.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UpdateService.cs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UpdateService.cs b/win/CS/HandBrakeWPF/Services/UpdateService.cs index 0702b1909..b5213f05d 100644 --- a/win/CS/HandBrakeWPF/Services/UpdateService.cs +++ b/win/CS/HandBrakeWPF/Services/UpdateService.cs @@ -97,17 +97,11 @@ namespace HandBrakeWPF.Services try
{
// Figure out which appcast we want to read.
- string url =
- VersionHelper.Is64Bit() || Environment.Is64BitOperatingSystem
- ? Constants.Appcast64
- : Constants.Appcast32;
+ string url = Constants.Appcast64;
if (VersionHelper.IsNightly())
{
- url =
- VersionHelper.Is64Bit() || Environment.Is64BitOperatingSystem
- ? Constants.AppcastUnstable64
- : Constants.AppcastUnstable32;
+ url = Constants.AppcastUnstable64;
}
var currentBuild = HandBrakeUtils.Build;
|