Changed: Add CPUMask variable

--HG--
branch : develop
This commit is contained in:
kervala 2016-01-02 17:08:25 +01:00
parent 20711e24e3
commit 958ccb9b58
2 changed files with 5 additions and 0 deletions

View file

@ -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.

View file

@ -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.