mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-03-28 07:47:03 -05:00
fix: Diff table in diffing view displaying incorrect end address (#1627)
Trivial fix for #1617 .
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user