mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 623338 - map Windows 2003 to Windows XP for the graphics blacklist - r=joe, a=blocking2.0
This commit is contained in:
parent
1b67db06c8
commit
144c95b494
@ -779,6 +779,11 @@ GfxInfo::GetFeatureStatusImpl(PRInt32 aFeature, PRInt32 *aStatus, nsAString & aS
|
||||
|
||||
OperatingSystem os = WindowsVersionToOperatingSystem(mWindowsVersion);
|
||||
|
||||
// Windows Server 2003 should be just like Windows XP for present purpose, but still has a different version number.
|
||||
// OTOH Windows Server 2008 R1 and R2 already have the same version numbers as Vista and Seven respectively
|
||||
if (os == DRIVER_OS_WINDOWS_SERVER_2003)
|
||||
os = DRIVER_OS_WINDOWS_XP;
|
||||
|
||||
const GfxDriverInfo *info;
|
||||
if (aDriverInfo)
|
||||
info = aDriverInfo;
|
||||
|
Loading…
Reference in New Issue
Block a user