From 39f4d804a240c17d058ca272b5177a36b794ab1b Mon Sep 17 00:00:00 2001 From: spiffeeroo <50706239+spiffeeroo@users.noreply.github.com> Date: Sun, 29 Dec 2024 19:43:32 -0800 Subject: [PATCH] [util] Limit frame rate to 60 fps for Arcana Heart 3 Love Max!!!!! and Arcana Heart 3 Love Max Six Stars!!!!!! Xtend [Arcana Heart 3 Love Max!!!!!](https://store.steampowered.com/app/370460) runs too fast when frame rate is above 60 fps (like on high refresh rate monitor). Limit frame rate to 60 fps so game runs at correct speed. [Arcana Heart 3 Love Max Six Stars!!!!!! Xtend](https://store.steampowered.com/app/661990) also suffers from the game speed being too fast while in windowed mode. Limit frame rate to 60 fps to fix game speed. --- src/util/config/config.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index 95b15e3ab..4e76c0943 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -1011,6 +1011,16 @@ namespace dxvk { { R"(\\DS\.exe$)", {{ { "d3d9.textureMemory", "0" }, }} }, + /* Arcana Heart 3 Love Max!!!!! * + * Game speed is too fast above 60 fps */ + { R"(\\AH3LM\.exe$)", {{ + { "d3d9.maxFrameRate", "60" }, + }} }, + /* Arcana Heart 3 Love Max Six Stars!!!!!! Xtend * + * Game speed is too fast above 60 fps (window) */ + { R"(\\AALib\.exe$)", {{ + { "d3d9.maxFrameRate", "60" }, + }} }, /**********************************************/ /* D3D8 GAMES */