mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 11:38:21 +02:00
Fixed bitset bools for conditional breakpoints
This commit is contained in:
parent
bdc6a17f79
commit
41fb94f1f8
1 changed files with 3 additions and 0 deletions
|
@ -3803,6 +3803,9 @@ bool WinDebugger::CheckConditionalBreakpoint(WdBreakpoint* breakpoint, DbgSubpro
|
||||||
mCallStack.Add(wdStackFrame);
|
mCallStack.Add(wdStackFrame);
|
||||||
DbgTypedValue result = conditional->mDbgEvaluationContext->EvaluateInContext(DbgTypedValue());
|
DbgTypedValue result = conditional->mDbgEvaluationContext->EvaluateInContext(DbgTypedValue());
|
||||||
ClearCallStack();
|
ClearCallStack();
|
||||||
|
|
||||||
|
if ((result.mType != NULL) && (result.mType->mTypeCode == DbgType_Bitfield))
|
||||||
|
result.mType = result.mType->mTypeParam;
|
||||||
|
|
||||||
if (conditional->mDbgEvaluationContext->mPassInstance->HasFailed())
|
if (conditional->mDbgEvaluationContext->mPassInstance->HasFailed())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue