diff --git a/Dalamud/Game/NativeWrapper/AgentInterfacePtr.cs b/Dalamud/Game/NativeWrapper/AgentInterfacePtr.cs
index 932a02af7..b5a6375a9 100644
--- a/Dalamud/Game/NativeWrapper/AgentInterfacePtr.cs
+++ b/Dalamud/Game/NativeWrapper/AgentInterfacePtr.cs
@@ -6,7 +6,7 @@ using FFXIVClientStructs.FFXIV.Client.UI.Agent;
namespace Dalamud.Game.NativeWrapper;
///
-/// A wrapper for AgentInterface.
+/// A readonly wrapper for AgentInterface.
///
/// The address to the AgentInterface.
[StructLayout(LayoutKind.Explicit, Size = 0x08)]
diff --git a/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs b/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs
index 28ef33f6f..4bbbec57a 100644
--- a/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs
+++ b/Dalamud/Game/NativeWrapper/AtkUnitBasePtr.cs
@@ -6,7 +6,7 @@ using FFXIVClientStructs.FFXIV.Component.GUI;
namespace Dalamud.Game.NativeWrapper;
///
-/// A wrapper for AtkUnitBase.
+/// A readonly wrapper for AtkUnitBase.
///
/// The address to the AtkUnitBase.
[StructLayout(LayoutKind.Explicit, Size = 0x08)]
diff --git a/Dalamud/Game/NativeWrapper/UIModulePtr.cs b/Dalamud/Game/NativeWrapper/UIModulePtr.cs
index 4f7480d02..f6b841610 100644
--- a/Dalamud/Game/NativeWrapper/UIModulePtr.cs
+++ b/Dalamud/Game/NativeWrapper/UIModulePtr.cs
@@ -5,7 +5,7 @@ using FFXIVClientStructs.FFXIV.Client.UI;
namespace Dalamud.Game.NativeWrapper;
///
-/// A wrapper for UIModule.
+/// A readonly wrapper for UIModule.
///
/// The address to the UIModule.
[StructLayout(LayoutKind.Explicit, Size = 0x08)]
diff --git a/Dalamud/Interface/Internal/UiDebug2/Browsing/AddonTree.cs b/Dalamud/Interface/Internal/UiDebug2/Browsing/AddonTree.cs
index 2dc1b6cfd..00782044f 100644
--- a/Dalamud/Interface/Internal/UiDebug2/Browsing/AddonTree.cs
+++ b/Dalamud/Interface/Internal/UiDebug2/Browsing/AddonTree.cs
@@ -152,7 +152,7 @@ public unsafe partial class AddonTree : IDisposable
var uldManager = addon->UldManager;
PrintFieldValuePair("Address", $"{(nint)addon:X}");
- PrintFieldValuePair("Agent", $"{GameGui.FindAgentInterface(addon):X}");
+ PrintFieldValuePair("Agent", $"{(nint)GameGui.FindAgentInterface(addon):X}");
PrintFieldValuePairs(
("X", $"{addon->X}"),