mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 22:08:41 +00:00
remainder of entity code -> df; exception code filters -> df
This commit is contained in:
@@ -8453,7 +8453,7 @@ DF_VIEW_UI_FUNCTION_DEF(exception_filters)
|
||||
}
|
||||
node->v[node->count].name = name;
|
||||
node->v[node->count].matches = matches;
|
||||
node->v[node->count].is_enabled = !!(d_state->ctrl_exception_code_filters[k/64] & (1ull<<(k%64)));
|
||||
node->v[node->count].is_enabled = !!(df_state->ctrl_exception_code_filters[k/64] & (1ull<<(k%64)));
|
||||
node->v[node->count].exception_code_kind = k;
|
||||
node->count += 1;
|
||||
opts_list.option_count += 1;
|
||||
@@ -8505,11 +8505,11 @@ DF_VIEW_UI_FUNCTION_DEF(exception_filters)
|
||||
CTRL_ExceptionCodeKind k = opt->exception_code_kind;
|
||||
if(opt->is_enabled)
|
||||
{
|
||||
d_state->ctrl_exception_code_filters[k/64] &= ~(1ull<<(k%64));
|
||||
df_state->ctrl_exception_code_filters[k/64] &= ~(1ull<<(k%64));
|
||||
}
|
||||
else
|
||||
{
|
||||
d_state->ctrl_exception_code_filters[k/64] |= (1ull<<(k%64));
|
||||
df_state->ctrl_exception_code_filters[k/64] |= (1ull<<(k%64));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user