Browse Source

Fixed pointer conversion issue.

Brucey 2 năm trước cách đây
mục cha
commit
33949d4735
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      format.mod/format.bmx

+ 1 - 1
format.mod/format.bmx

@@ -595,7 +595,7 @@ Type TPtrArg Extends TArg
 	Field value:Byte Ptr
 
 	Method ToString:String()
-		Return String.fromSizeT(Size_T(Size_T Ptr(value)))
+		Return String.fromSizeT((Size_T Ptr(value))[0])
 	End Method
 
 	Method ArgType:Int()