diff --git a/src/apps/debugger/AttributeValue.h b/src/apps/debugger/AttributeValue.h index 94711e158b..3b92053a26 100644 --- a/src/apps/debugger/AttributeValue.h +++ b/src/apps/debugger/AttributeValue.h @@ -45,6 +45,13 @@ struct DynamicAttributeValue { }; uint8 attributeClass; + DynamicAttributeValue() + : + attributeClass(ATTRIBUTE_CLASS_CONSTANT) + { + this->constant = 0; + } + void SetTo(uint64 constant) { this->constant = constant;