소스 검색

Merge pull request #1708 from MineGame159/structured-data

Fix StructuredData.ObjectToString()
Brian Fiete 3 년 전
부모
커밋
fade92d658
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      BeefLibs/Beefy2D/src/utils/StructuredData.bf

+ 4 - 4
BeefLibs/Beefy2D/src/utils/StructuredData.bf

@@ -1190,17 +1190,17 @@ namespace Beefy.utils
             else if (type == typeof(System.UInt32))
 			{
                 ((uint32)theObject).ToString(str);
-                str.Append("U");
+                //str.Append("U");
 			}
             else if (type == typeof(System.Int64))
 			{
-                ((uint64)theObject).ToString(str);
-                str.Append("L");
+                ((int64)theObject).ToString(str);
+                //str.Append("L");
 			}
             else if (type == typeof(System.UInt64))
 			{
                 ((uint64)theObject).ToString(str);
-                str.Append("UL");
+                //str.Append("UL");
 			}
 			else if (type == typeof(System.Int))
 			{