fix: some minor IDE complaints

This commit is contained in:
Kaz Wolfe 2025-11-11 08:28:14 -08:00
parent 963b3d9318
commit fe163fbb97
No known key found for this signature in database
GPG key ID: 258813F53A16EBB4
4 changed files with 6 additions and 7 deletions

View file

@ -90,9 +90,9 @@ internal unsafe class ComponentNodeTree : ResNodeTree
case TextInput:
var textInputComponent = (AtkComponentTextInput*)this.Component;
ImGui.Text(
$"InputBase Text1: {Marshal.PtrToStringAnsi(new(textInputComponent->AtkComponentInputBase.UnkText1.StringPtr))}");
$"InputBase Text1: {Marshal.PtrToStringAnsi(new(textInputComponent->AtkComponentInputBase.EvaluatedString.StringPtr))}");
ImGui.Text(
$"InputBase Text2: {Marshal.PtrToStringAnsi(new(textInputComponent->AtkComponentInputBase.UnkText2.StringPtr))}");
$"InputBase Text2: {Marshal.PtrToStringAnsi(new(textInputComponent->AtkComponentInputBase.RawString.StringPtr))}");
ImGui.Text(
$"Text1: {Marshal.PtrToStringAnsi(new(textInputComponent->UnkText01.StringPtr))}");
ImGui.Text(