From 3a368f478031f287782d03ba4b6272419060e8ea Mon Sep 17 00:00:00 2001 From: Trevonn Date: Sun, 25 Jun 2023 14:04:53 +0100 Subject: [PATCH] Bladestorm Nightmare - Game speed increases when above 60 FPS outside of missions The game has 3 v-sync options but doesn't explain what they do. 0 = 60 FPS 1 = Monitor Refresh Rate 2 = 30 FPS Framerate is capped at 60 in missions and then up to monitor refresh in the main menu and tavern area This PR would provide a better default experience for people using option 1 with high refresh displays --- src/util/config/config.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 9695148b..b2d32781 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -399,6 +399,12 @@ namespace dxvk { { R"(\\Battle.net\.exe$)", {{ { "dxvk.maxChunkSize", "1" }, }} }, + /* Bladestorm Nightmare * + * Game speed increases when above 60 fps in * + * the tavern area */ + { R"(\\BLADESTORM Nightmare\\Launch_(EA|JP)\.exe$)", {{ + { "dxgi.maxFrameRate", "60" }, + }} }, /**********************************************/ /* D3D9 GAMES */