mirror of https://github.com/x64dbg/TitanEngine
fixed return value of InitXState()
This commit is contained in:
parent
6f6bae27a6
commit
ee9fc93b96
|
|
@ -224,9 +224,9 @@ bool InitXState()
|
|||
_SetXStateFeaturesMask = (SETXSTATEFEATURESMASK)GetProcAddress(kernel32, "SetXStateFeaturesMask");
|
||||
}
|
||||
}
|
||||
return (_GetEnabledXStateFeatures == NULL ||
|
||||
_InitializeContext == NULL ||
|
||||
_GetXStateFeaturesMask == NULL ||
|
||||
_LocateXStateFeature == NULL ||
|
||||
_SetXStateFeaturesMask == NULL);
|
||||
return (_GetEnabledXStateFeatures != NULL &&
|
||||
_InitializeContext != NULL &&
|
||||
_GetXStateFeaturesMask != NULL &&
|
||||
_LocateXStateFeature != NULL &&
|
||||
_SetXStateFeaturesMask != NULL);
|
||||
}
|
||||
Loading…
Reference in New Issue