mirror of https://github.com/x64dbg/TitanEngine
Fix formatting
This commit is contained in:
parent
3db7179373
commit
ea05d920b7
|
|
@ -951,15 +951,16 @@ __declspec(dllexport) bool TITCALL SetAVXContext(HANDLE hActiveThread, TITAN_ENG
|
||||||
if(Success == FALSE)
|
if(Success == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (_SetXStateFeaturesMask(Context, XSTATE_MASK_AVX) == FALSE) {
|
if(_SetXStateFeaturesMask(Context, XSTATE_MASK_AVX) == FALSE)
|
||||||
if (_SetXStateFeaturesMask(Context, XSTATE_MASK_LEGACY_SSE) == FALSE)
|
{
|
||||||
return false;
|
if(_SetXStateFeaturesMask(Context, XSTATE_MASK_LEGACY_SSE) == FALSE)
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if(GetThreadContext(hActiveThread, Context) == FALSE)
|
if(GetThreadContext(hActiveThread, Context) == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
DWORD64 FeatureMask;
|
DWORD64 FeatureMask;
|
||||||
if(_GetXStateFeaturesMask(Context, &FeatureMask) == FALSE)
|
if(_GetXStateFeaturesMask(Context, &FeatureMask) == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
@ -1010,15 +1011,16 @@ __declspec(dllexport) bool TITCALL GetAVXContext(HANDLE hActiveThread, TITAN_ENG
|
||||||
if(Success == FALSE)
|
if(Success == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
if (_SetXStateFeaturesMask(Context, XSTATE_MASK_AVX) == FALSE) {
|
if(_SetXStateFeaturesMask(Context, XSTATE_MASK_AVX) == FALSE)
|
||||||
if (_SetXStateFeaturesMask(Context, XSTATE_MASK_LEGACY_SSE) == FALSE)
|
{
|
||||||
return false;
|
if(_SetXStateFeaturesMask(Context, XSTATE_MASK_LEGACY_SSE) == FALSE)
|
||||||
}
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if(GetThreadContext(hActiveThread, Context) == FALSE)
|
if(GetThreadContext(hActiveThread, Context) == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
DWORD64 FeatureMask;
|
DWORD64 FeatureMask;
|
||||||
if(_GetXStateFeaturesMask(Context, &FeatureMask) == FALSE)
|
if(_GetXStateFeaturesMask(Context, &FeatureMask) == FALSE)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue