{\r
// We don't support Windows XP / 2003 / 2003 R2 / Vista / 2008\r
OperatingSystem os = Environment.OSVersion;\r
- if ((os.Platform == PlatformID.Win32NT) && (os.Version.Major == 5) ||\r
- (os.Platform == PlatformID.Win32NT) && (os.Version.Major == 6 && os.Version.Minor < 1))\r
+ if (((os.Platform == PlatformID.Win32NT) && (os.Version.Major == 5)) || ((os.Platform == PlatformID.Win32NT) && (os.Version.Major == 6 && os.Version.Minor < 1)))\r
{\r
MessageBox.Show("HandBrake requires Windows 7 or later to run. Version 0.9.9 (XP) and 0.10.5 (Vista) was the last version to support these versions.", "Warning", MessageBoxButton.OK, MessageBoxImage.Warning);\r
Application.Current.Shutdown();\r