diff --git a/Dalamud/Interface/Utility/ImGuiHelpers.cs b/Dalamud/Interface/Utility/ImGuiHelpers.cs index 9a5fa16be..d43bfef0f 100644 --- a/Dalamud/Interface/Utility/ImGuiHelpers.cs +++ b/Dalamud/Interface/Utility/ImGuiHelpers.cs @@ -492,7 +492,7 @@ public static partial class ImGuiHelpers /// If returns null. public static unsafe void* AllocateMemory(nuint length) { - var memory = ImGui.MemAlloc((uint)length); + var memory = ImGui.MemAlloc(length); if (memory is null) { throw new OutOfMemoryException(