mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[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.
This commit is contained in:
parent
1eb0c687a6
commit
f38b84b6a1
1 changed files with 10 additions and 0 deletions
|
@ -1011,6 +1011,16 @@ namespace dxvk {
|
||||||
{ R"(\\DS\.exe$)", {{
|
{ R"(\\DS\.exe$)", {{
|
||||||
{ "d3d9.textureMemory", "0" },
|
{ "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 */
|
/* D3D8 GAMES */
|
||||||
|
|
Loading…
Add table
Reference in a new issue