fix: Diff table in diffing view displaying incorrect end address (#1627)

Trivial fix for #1617 .
This commit is contained in:
FireNX70
2024-04-11 23:49:58 +02:00
committed by GitHub
parent f135bd86ac
commit 43070a1f5b

View File

@@ -273,7 +273,7 @@ namespace hex::plugin::diffing {
// Draw end address
ImGui::TableNextColumn();
ImGui::TextUnformatted(hex::format("0x{:02X}", regionA.start).c_str());
ImGui::TextUnformatted(hex::format("0x{:02X}", regionA.end).c_str());
// Draw difference type
ImGui::TableNextColumn();