Added unsigned indicator to integer data type in focused memory region manager

This commit is contained in:
Nav
2022-01-14 23:53:12 +00:00
parent d462358b1e
commit e10ac37b6c
4 changed files with 7 additions and 5 deletions

View File

@@ -34,7 +34,7 @@ void ValueAnnotationItem::refreshLabelText() {
}
switch (this->focusedMemoryRegion.dataType) {
case MemoryRegionDataType::INTEGER: {
case MemoryRegionDataType::UNSIGNED_INTEGER: {
std::uint64_t integerValue = 0;
for (const auto& byte : data) {
integerValue = (integerValue << 8) | byte;