Skip to content

Commit

Permalink
[util] Limit frame rate to 60 fps for Arcana Heart 3 Love Max!!!!! an…
Browse files Browse the repository at this point in the history
…d 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.
  • Loading branch information
spiffeeroo committed Dec 31, 2024
1 parent 1eb0c68 commit 8d83e0b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/util/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 8d83e0b

Please sign in to comment.