From eb34eb10230036479ce683e1209f4a923c2d6517 Mon Sep 17 00:00:00 2001 From: goaaats Date: Sat, 31 May 2025 12:00:20 +0200 Subject: [PATCH] Fix some warnings --- Dalamud/Interface/Internal/UiDebug.cs | 12 ++++++------ .../Internal/UiDebug2/Browsing/NodeTree.Component.cs | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dalamud/Interface/Internal/UiDebug.cs b/Dalamud/Interface/Internal/UiDebug.cs index 9dfff75ec..d0ebc8fac 100644 --- a/Dalamud/Interface/Internal/UiDebug.cs +++ b/Dalamud/Interface/Internal/UiDebug.cs @@ -431,17 +431,17 @@ internal unsafe class UiDebug ImGui.SameLine(); Service.Get().Draw(textInputComponent->UnkText02); - ImGui.Text("Text3: "); + ImGui.Text("AvailableLines: "); ImGui.SameLine(); - Service.Get().Draw(textInputComponent->UnkText03); + Service.Get().Draw(textInputComponent->AvailableLines); - ImGui.Text("Text4: "); + ImGui.Text("HighlightedAutoTranslateOptionColorPrefix: "); ImGui.SameLine(); - Service.Get().Draw(textInputComponent->UnkText04); + Service.Get().Draw(textInputComponent->HighlightedAutoTranslateOptionColorPrefix); - ImGui.Text("Text5: "); + ImGui.Text("HighlightedAutoTranslateOptionColorSuffix: "); ImGui.SameLine(); - Service.Get().Draw(textInputComponent->UnkText05); + Service.Get().Draw(textInputComponent->HighlightedAutoTranslateOptionColorSuffix); break; } diff --git a/Dalamud/Interface/Internal/UiDebug2/Browsing/NodeTree.Component.cs b/Dalamud/Interface/Internal/UiDebug2/Browsing/NodeTree.Component.cs index 4a1989441..2383e19e0 100644 --- a/Dalamud/Interface/Internal/UiDebug2/Browsing/NodeTree.Component.cs +++ b/Dalamud/Interface/Internal/UiDebug2/Browsing/NodeTree.Component.cs @@ -92,11 +92,11 @@ internal unsafe class ComponentNodeTree : ResNodeTree ImGui.TextUnformatted( $"Text2: {Marshal.PtrToStringAnsi(new(textInputComponent->UnkText02.StringPtr))}"); ImGui.TextUnformatted( - $"Text3: {Marshal.PtrToStringAnsi(new(textInputComponent->UnkText03.StringPtr))}"); + $"AvailableLines: {Marshal.PtrToStringAnsi(new(textInputComponent->AvailableLines.StringPtr))}"); ImGui.TextUnformatted( - $"Text4: {Marshal.PtrToStringAnsi(new(textInputComponent->UnkText04.StringPtr))}"); + $"HighlightedAutoTranslateOptionColorPrefix: {Marshal.PtrToStringAnsi(new(textInputComponent->HighlightedAutoTranslateOptionColorPrefix.StringPtr))}"); ImGui.TextUnformatted( - $"Text5: {Marshal.PtrToStringAnsi(new(textInputComponent->UnkText05.StringPtr))}"); + $"HighlightedAutoTranslateOptionColorSuffix: {Marshal.PtrToStringAnsi(new(textInputComponent->HighlightedAutoTranslateOptionColorSuffix.StringPtr))}"); break; case List: case TreeList: