Skip to content

Commit

Permalink
[util] Limit Sonic CD to 60 fps
Browse files Browse the repository at this point in the history
Game engine physics/speed for Sonic CD is tied to frame rate so limit max frame rate to 60 fps. Otherwise, the game runs too quickly for high refresh rate monitors.
  • Loading branch information
spiffeeroo authored and doitsujin committed Jan 2, 2024
1 parent 2cf590f commit 5e06cf9
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 @@ -841,6 +841,10 @@ namespace dxvk {
{ R"(\\SkyDrift\.exe$)" , {{
{ "d3d9.allowDirectBufferMapping", "False" },
}} },
/* Sonic CD */
{ R"(\\soniccd\.exe$)", {{
{ "d3d9.maxFrameRate", "60" },
}} },

/**********************************************/
/* D3D12 GAMES (vkd3d-proton with dxvk dxgi) */
Expand Down

0 comments on commit 5e06cf9

Please sign in to comment.