From 4bb937b15500ee9ca538481c5782b6de18d1d600 Mon Sep 17 00:00:00 2001 From: "nor..67" Date: Tue, 3 May 2011 16:01:27 +0000 Subject: [PATCH] - make 64bit default for native libraries (e.g. libbulletjme32.so for 32bit) git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@7411 75d07b2b-3a1a-0410-a2c5-0572b91ccdca --- engine/src/desktop/com/jme3/system/Natives.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/engine/src/desktop/com/jme3/system/Natives.java b/engine/src/desktop/com/jme3/system/Natives.java index fc423c413..3e7186860 100644 --- a/engine/src/desktop/com/jme3/system/Natives.java +++ b/engine/src/desktop/com/jme3/system/Natives.java @@ -151,7 +151,7 @@ public class Natives { extractNativeLib("windows", "jinput-raw_64"); } if(needNativeBullet){ - extractNativeLib("windows", "bulletjme_64"); + extractNativeLib("windows", "bulletjme"); } break; case Windows32: @@ -166,7 +166,7 @@ public class Natives { extractNativeLib("windows", "jinput-raw"); } if(needNativeBullet){ - extractNativeLib("windows", "bulletjme"); + extractNativeLib("windows", "bulletjme64"); } break; case Linux64: @@ -180,7 +180,7 @@ public class Natives { extractNativeLib("linux", "openal64"); } if(needNativeBullet){ - extractNativeLib("linux", "bulletjme64"); + extractNativeLib("linux", "bulletjme"); } break; case Linux32: @@ -194,7 +194,7 @@ public class Natives { extractNativeLib("linux", "openal"); } if(needNativeBullet){ - extractNativeLib("linux", "bulletjme"); + extractNativeLib("linux", "bulletjme32"); } break; case MacOSX_PPC32: