mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Add CPUMask variable
This commit is contained in:
parent
61457e575e
commit
88f5a5a0b2
2 changed files with 5 additions and 0 deletions
|
@ -506,6 +506,7 @@ CClientConfig::CClientConfig()
|
|||
|
||||
Sleep = -1; // Default : client does not sleep.
|
||||
ProcessPriority = 0; // Default : NORMAL
|
||||
CPUMask = 0; // Default : auto detection
|
||||
ShowPath = false; // Default : do not display the path.
|
||||
DrawBoxes = false; // Default : Do not draw the selection.
|
||||
|
||||
|
@ -1486,6 +1487,8 @@ void CClientConfig::setValues()
|
|||
READ_INT_FV(Sleep)
|
||||
// ProcessPriority
|
||||
READ_INT_FV(ProcessPriority)
|
||||
// CPUMask
|
||||
READ_INT_FV(CPUMask)
|
||||
// ShowPath : Get the ShowPath value.
|
||||
READ_BOOL_DEV(ShowPath)
|
||||
// UserSheet : Get the sheet to used for the use rin Local mode.
|
||||
|
|
|
@ -421,6 +421,8 @@ struct CClientConfig
|
|||
sint Sleep;
|
||||
/// Force process priority
|
||||
sint ProcessPriority;
|
||||
/// CPU Mask
|
||||
sint CPUMask;
|
||||
// To show/hide the entities path
|
||||
bool ShowPath;
|
||||
/// Draw the Boxes used for the selection.
|
||||
|
|
Loading…
Reference in a new issue