mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-26 18:39:20 +01:00
Name the tuple in BaseAddressResolver
This commit is contained in:
parent
3c5f6271ce
commit
67624e14ae
2 changed files with 5 additions and 5 deletions
|
|
@ -286,11 +286,11 @@ namespace Dalamud.Interface.Internal.Windows
|
|||
foreach (var valueTuple in debugScannedValue.Value)
|
||||
{
|
||||
ImGui.TextUnformatted(
|
||||
$" {valueTuple.Item1} - 0x{valueTuple.Item2.ToInt64():x}");
|
||||
$" {valueTuple.ClassName} - 0x{valueTuple.Address.ToInt64():x}");
|
||||
ImGui.SameLine();
|
||||
|
||||
if (ImGui.Button($"C##copyAddress{this.copyButtonIndex++}"))
|
||||
ImGui.SetClipboardText(valueTuple.Item2.ToInt64().ToString("x"));
|
||||
ImGui.SetClipboardText(valueTuple.Address.ToInt64().ToString("x"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue