Skip to content

Commit

Permalink
settings.h: Disable accurate mul by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamer64ytb committed Jul 25, 2024
1 parent 03e2916 commit 7255d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ struct Values {
SwitchableSetting<bool> async_presentation{true, "async_presentation"};
SwitchableSetting<bool> use_hw_shader{true, "use_hw_shader"};
SwitchableSetting<bool> use_disk_shader_cache{true, "use_disk_shader_cache"};
SwitchableSetting<bool> shaders_accurate_mul{true, "shaders_accurate_mul"};
SwitchableSetting<bool> shaders_accurate_mul{false, "shaders_accurate_mul"};
SwitchableSetting<bool> use_vsync_new{true, "use_vsync_new"};
Setting<bool> use_shader_jit{true, "use_shader_jit"};
SwitchableSetting<u32, true> resolution_factor{1, 0, 10, "resolution_factor"};
Expand Down

0 comments on commit 7255d79

Please sign in to comment.