From f9eb853a188cb902c15a04e9dfa08eef9f339fa6 Mon Sep 17 00:00:00 2001 From: goaaats Date: Thu, 12 May 2022 11:05:47 +0200 Subject: [PATCH] fix: ImFontGlyphReal.Codepoint setter not using value --- Dalamud/Interface/ImGuiHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Interface/ImGuiHelpers.cs b/Dalamud/Interface/ImGuiHelpers.cs index 99590af18..c873210c1 100644 --- a/Dalamud/Interface/ImGuiHelpers.cs +++ b/Dalamud/Interface/ImGuiHelpers.cs @@ -240,7 +240,7 @@ namespace Dalamud.Interface public int Codepoint { get => (int)(this.ColoredVisibleCodepoint >> 2); - set => this.ColoredVisibleCodepoint = (this.ColoredVisibleCodepoint & 3u) | ((uint)this.Codepoint << 2); + set => this.ColoredVisibleCodepoint = (this.ColoredVisibleCodepoint & 3u) | ((uint)value << 2); } } }