From 462165da197af2adbb2056806e8e6784c125d386 Mon Sep 17 00:00:00 2001 From: Philip Rebohle Date: Fri, 26 Apr 2024 13:15:59 +0200 Subject: [PATCH] [util] Add Deck profile for Fallout 4 Should fix the FPS problem on Deck OLED. --- src/util/config/config.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 18df1b4c..da0932e6 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -913,7 +913,11 @@ namespace dxvk { const static ProfileList g_deckProfiles = {{ - + /* Fallout 4: Defaults to 45 FPS on OLED, but also breaks above 60 FPS */ + { R"(\\Fallout4\.exe$)", {{ + { "dxgi.syncInterval", "1" }, + { "dxgi.maxFrameRate", "60" }, + }} }, }};