From 12c51f1c3df70e220dd02754650a3226fe02c602 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Wed, 9 Jun 2021 03:48:07 +0200 Subject: [PATCH] [util] Enable frame rate limiter for Nier Replicant The game does not run properly at frame rates above 60 and uses the sync interval in a weird way that sometimes leads to the game being stuck at 31 FPS, and in the menus it displays content at weird refresh rates that it was clearly not designed to run at. --- src/util/config/config.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 2073b177..18888e7b 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -108,6 +108,11 @@ namespace dxvk { { R"(\\NieRAutomata\.exe$)", {{ { "d3d11.constantBufferRangeCheck", "True" }, }} }, + /* NieR Replicant */ + { R"(\\NieR Replicant ver\.1\.22474487139\.exe)", {{ + { "dxgi.syncInterval", "1" }, + { "dxgi.maxFrameRate", "60" }, + }} }, /* SteamVR performance test */ { R"(\\vr\.exe$)", {{ { "d3d11.dcSingleUseMode", "False" },