Skip to content

Commit

Permalink
[util] Enable deviceLost for DC Universe Online and GTA IV
Browse files Browse the repository at this point in the history
  • Loading branch information
K0bin committed Mar 27, 2023
1 parent 355923c commit a0c2bc9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/util/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,11 +465,13 @@ namespace dxvk {
* and will report/use bad amounts of VRAM.
* Disabling support for DF texture formats
* makes the game use a better looking render
* path for mirrors */
* path for mirrors.
* Also runs into issues after alt-tabbing. */
{ R"(\\(GTAIV|EFLC)\.exe$)", {{
{ "d3d9.customVendorId", "1002" },
{ "dxgi.emulateUMA", "True" },
{ "d3d9.supportDFFormats", "False" },
{ "d3d9.deviceLost", "True" },
}} },
/* Battlefield 2 (bad z-pass) */
{ R"(\\BF2\.exe$)", {{
Expand Down Expand Up @@ -747,6 +749,11 @@ namespace dxvk {
{ R"(\\(PANZERS|PANZERS_Phase_2)\.exe$)", {{
{ "d3d9.enableDialogMode", "True" },
}} },
/* DC Universe Online *
* Freezes after alt tabbing */
{ R"(\\DCGAME\.EXE$)", {{
{ "d3d9.deviceLost", "True" },
}} },

/**********************************************/
/* D3D12 GAMES (vkd3d-proton with dxvk dxgi) */
Expand Down

0 comments on commit a0c2bc9

Please sign in to comment.