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
Copy file name to clipboardexpand all lines: src/config.cpp
+9
Original file line number
Diff line number
Diff line change
@@ -1127,6 +1127,7 @@ struct {
1127
1127
sk::ParameterBool* highest_priority = nullptr;
1128
1128
sk::ParameterBool* deny_foreign_change = nullptr;
1129
1129
sk::ParameterInt* min_render_priority = nullptr;
1130
+
sk::ParameterInt64* cpu_affinity_mask = nullptr;
1130
1131
} priority;
1131
1132
} scheduling;
1132
1133
@@ -2007,6 +2008,7 @@ auto DeclKeybind =
2007
2008
ConfigEntry (scheduling.priority.highest_priority, L"Boost process priority to High instead of Above Normal", dll_ini, L"Scheduler.Boost", L"RaisePriorityToHigh"),
2008
2009
ConfigEntry (scheduling.priority.deny_foreign_change,L"Do not allow third-party apps to change priority", dll_ini, L"Scheduler.Boost", L"DenyForeignChanges"),
2009
2010
ConfigEntry (scheduling.priority.min_render_priority,L"Minimum priority for a game's render thread", dll_ini, L"Scheduler.Boost", L"MinimumRenderThreadPriority"),
2011
+
ConfigEntry (scheduling.priority.cpu_affinity_mask, L"Mask of CPU cores the process is eligible for scheduling.", dll_ini, L"Scheduler.Boost", L"ProcessorAffinityMask"),
2010
2012
2011
2013
ConfigEntry (sound.minimize_latency, L"Minimize Audio Latency while Game is Running", dll_ini, L"Sound.Mixing", L"MinimizeLatency"),
0 commit comments