Skip to content

Commit

Permalink
[util] Enable 60 FPS lock for Aviary Attorney
Browse files Browse the repository at this point in the history
This game (or nw.js) comes with a hard-coded frame rate limit that
behaves more like a random number generator which happens to average
out at around 16ms on a good day.

Fix this complete mess by enabling ours on top of that.
  • Loading branch information
doitsujin committed Sep 8, 2023
1 parent 41191af commit c113b79
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/util/config/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -807,6 +807,10 @@ namespace dxvk {
{ R"(\\Snowblind\.(SP|MP|exe)$)", {{
{ "d3d9.maxFrameRate", "60" },
}} },
/* Project: Snowblind */
{ R"(\\Aviary Attorney\\nw\.exe$)", {{
{ "d3d9.maxFrameRate", "60" },
}} },
/* Drakensang: The Dark Eye */
{ R"(\\drakensang\.exe$)", {{
{ "d3d9.deferSurfaceCreation", "True" },
Expand Down

0 comments on commit c113b79

Please sign in to comment.