浏览代码

Merge branch 'master' into patch-4

Kim Kulling 4 年之前
父节点
当前提交
dc6fa58814
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      port/PyAssimp/pyassimp/structs.py

+ 2 - 2
port/PyAssimp/pyassimp/structs.py

@@ -1,6 +1,6 @@
 #-*- coding: utf-8 -*-
 #-*- coding: utf-8 -*-
 
 
-from ctypes import POINTER, c_void_p, c_uint, c_char, c_float, Structure, c_char_p, c_double, c_ubyte, c_size_t, c_uint32
+from ctypes import POINTER, c_void_p, c_uint, c_char, c_float, Structure, c_double, c_ubyte, c_size_t, c_uint32
 
 
 
 
 class Vector2D(Structure):
 class Vector2D(Structure):
@@ -1121,7 +1121,7 @@ class Scene(Structure):
             ("mMetadata", POINTER(Metadata)),
             ("mMetadata", POINTER(Metadata)),
 
 
             # Internal data, do not touch
             # Internal data, do not touch
-            ("mPrivate", c_char_p),
+            ("mPrivate", POINTER(c_char)),
         ]
         ]
 
 
 assimp_structs_as_tuple = (Matrix4x4,
 assimp_structs_as_tuple = (Matrix4x4,