Skip to content

Commit 719a3f9

Browse files
committed
Sync with main code.
1 parent 6e096c3 commit 719a3f9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Nodes/FStringNode.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
using System.Drawing;
33
using System.Text;
44
using ReClassNET.Controls;
5+
using ReClassNET.Extensions;
56
using ReClassNET.Nodes;
67
using ReClassNET.UI;
78

@@ -26,7 +27,7 @@ public override Size Draw(DrawContext context, int x, int y)
2627

2728
var ptr = context.Memory.ReadIntPtr(Offset);
2829
var length = context.Memory.ReadInt32(Offset + IntPtr.Size);
29-
var text = context.Process.ReadRemoteString(Encoding.Unicode, ptr, length);
30+
var text = context.Process.ReadRemoteString(ptr, Encoding.Unicode, length);
3031

3132
var origX = x;
3233

0 commit comments

Comments
 (0)