You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// System vars sys_disableTaskSwitch "0" sys_disableWinKeys "1" sys_clockprecision "1" //Attempts to control windows' interrupt interval, in milliseconds. This can cause windows to give better clock precision and shorter waits, but also more overhead from process rescheduling. sys_clocktype "" //Controls which system clock to base timings from. //0: auto //1: timeGetTime (low precision). //2: QueryPerformanceCounter (may drift, desync between cpu cores, or run fast with longer uptimes depending on cpu(s) and windows version). //3: QueryPerformanceCounter-with-force-affinity (shouldn't drift, but may result in less cpu time available). sys_highpriority "1" //Controls the process priority
To avoid stutter
// System vars sys_disableTaskSwitch "0" sys_disableWinKeys "1" sys_clockprecision "1" //Attempts to control windows' interrupt interval, in milliseconds. This can cause windows to give better clock precision and shorter waits, but also more overhead from process rescheduling. sys_clocktype "" //Controls which system clock to base timings from. //0: auto //1: timeGetTime (low precision). //2: QueryPerformanceCounter (may drift, desync between cpu cores, or run fast with longer uptimes depending on cpu(s) and windows version). //3: QueryPerformanceCounter-with-force-affinity (shouldn't drift, but may result in less cpu time available). sys_highpriority "1" //Controls the process priority
For reference
https://discord.com/channels/417258901810184192/531050292003995648/1135666556148400238
The text was updated successfully, but these errors were encountered: