Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 3, 2011, 5:07:42 AM (14 years ago)
Author:
rgrieder
Message:

Updated Bullet from v2.77 to v2.78.
(I'm not going to make a branch for that since the update from 2.74 to 2.77 hasn't been tested that much either).

You will HAVE to do a complete RECOMPILE! I tested with MSVC and MinGW and they both threw linker errors at me.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/external/bullet/changes_orxonox.diff

    r8351 r8393  
    1 --- LinearMath/btScalar.h       Tue Aug 10 13:19:44 2010
    2 +++ LinearMath/btScalar.h       Sun Feb 27 01:27:34 2011
    3 @@ -286,7 +286,11 @@
    4  SIMD_FORCE_INLINE btScalar btAtan2(btScalar x, btScalar y) { return atan2f(x, y); }
    5  SIMD_FORCE_INLINE btScalar btExp(btScalar x) { return expf(x); }
    6  SIMD_FORCE_INLINE btScalar btLog(btScalar x) { return logf(x); }
    7 -SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
    8 +  #if defined( __MINGW32__ )
    9 +  SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return pow(x,y); }
    10 +  #else
    11 +  SIMD_FORCE_INLINE btScalar btPow(btScalar x,btScalar y) { return powf(x,y); }
    12 +  #endif
    13  SIMD_FORCE_INLINE btScalar btFmod(btScalar x,btScalar y) { return fmodf(x,y); }
    14        
    15  #endif
     1
Note: See TracChangeset for help on using the changeset viewer.