1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-31 14:52:11 +01:00

[util] Add configs for Splinter Cell Conviction

The game will sometimes black screen upon alt-tab without deviceLossOnFocusLoss.
Spoofing the GPU through dxgi to a known one from its list prevents the System Detection tool from complaining that it is unsupported on some setups.
This commit is contained in:
Blisto91 2024-07-17 00:36:30 +02:00 committed by Philip Rebohle
parent c26b2ade1d
commit 33bf09122c

View File

@ -996,10 +996,18 @@ namespace dxvk {
R"(|The Lord of the Rings, The Rise of the Witch-king)\\game\.dat$)", {{ R"(|The Lord of the Rings, The Rise of the Witch-king)\\game\.dat$)", {{
{ "d3d9.cachedDynamicBuffers", "True" }, { "d3d9.cachedDynamicBuffers", "True" },
}} }, }} },
/* WRC4 - Audio breaks above 60fps */ /* WRC4 - Audio breaks above 60fps */
{ R"(\\WRC4\.exe$)", {{ { R"(\\WRC4\.exe$)", {{
{ "d3d9.maxFrameRate", "60" }, { "d3d9.maxFrameRate", "60" },
}} }, }} },
/* Splinter Cell Conviction - Alt-tab black *
* screen and unsupported GPU complaint */
{ R"(\\conviction_game\.exe$)", {{
{ "d3d9.deviceLossOnFocusLoss", "True" },
{ "dxgi.customVendorId", "10de" },
{ "dxgi.customDeviceId", "05e0" },
{ "dxgi.customDeviceDesc", "GeForce GTX 295" },
}} },
/**********************************************/ /**********************************************/
/* D3D8 GAMES */ /* D3D8 GAMES */