瀏覽代碼

- change pointers to jlong across platforms

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@8488 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
nor..67 14 年之前
父節點
當前提交
6ce4cc012e
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      engine/src/bullet/native/jmeBulletUtil.h

+ 3 - 3
engine/src/bullet/native/jmeBulletUtil.h

@@ -35,11 +35,11 @@
 #include "LinearMath/btVector3.h"
 #include "LinearMath/btVector3.h"
 
 
 #ifdef _WIN32
 #ifdef _WIN32
-typedef ULONG OBJ_PTR;
+typedef jlong OBJ_PTR;
 #elif _WIN64
 #elif _WIN64
-typedef _int64 OBJ_PTR;
+typedef jlong OBJ_PTR;
 #else
 #else
-typedef long OBJ_PTR;
+typedef jlong OBJ_PTR;
 #endif
 #endif
 
 
 /**
 /**