forked from ValveSoftware/Proton
-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patches: add dxvk fixup for secret world: legends
- Loading branch information
1 parent
5fdfaf6
commit b4dabc0
Showing
2 changed files
with
24 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp | ||
index f3aaed0f..45a71721 100644 | ||
--- a/src/util/config/config.cpp | ||
+++ b/src/util/config/config.cpp | ||
@@ -681,9 +681,14 @@ namespace dxvk { | ||
{ R"(\\bms\.exe$)", {{ | ||
{ "d3d9.customVendorId", "10de" }, | ||
}} }, | ||
+ /* Secret World: Legends * | ||
+ * Launcher needs shaderModel 2 * | ||
+ * to not crash */ | ||
+ { R"(\\ClientPatcher\.exe$)", {{ | ||
+ { "d3d9.shaderModel", "2" }, | ||
+ }} }, | ||
}}; | ||
|
||
- | ||
static bool isWhitespace(char ch) { | ||
return ch == ' ' || ch == '\x9' || ch == '\r'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters