
Howard Crane
Published
PROTON_FORCE_LARGE_ADDRESS_AWARE=1 PULSE_LATENCY_MSEC=90 %command%
Did the whole PCGamingWiki shebang: detail distance (high) with fps around 60 - 72 (limited in uplay command args to 75 fps) , negative mouse accel mitigation, FOV (nexus mod) and Aniso 16x forced with dxvk.conf
Negative mouse accel which was fixed with PCGamingWiki advice.
Regular microstutter with experimental Proton and GE. After installation, which necessitated Proton experimental (might be one off for my case), switched to default 7.0-3 which resolved this problem. Might wanna try dxvk-async with Proton-GE.
Without tinkering you would experience regular stutter. If you can live with that, yes.
DXVK_ASYNC=1 %command%
Switched OS to Windows 7 with winecfg.
Installed latest UPlay client with protontricks.
Removed file: /Tom Clancy's Splinter Cell Conviction/src/system/systemdetection.dll
Infrequent crackling. Might resolve with PULSE_LATENCY_MSEC=90.
Negative mouse acceleration.
Frequent stuttering which resolved with Proton-GE dxvk-async option.
UPlay servers are down for this game.
This game switches to a single CPU core on every level load which causes performance problems. Use something like this script:
#!/bin/bash
while :;
do
PID=`ps ax | grep conviction_game | grep Z: | awk '{ print $1 }'`;
if [ -n "$PID" ]; then
taskset -cap 0-11 "$PID";
fi;
sleep 3;
done;