>humm, .. this seems to define USE_BULLET for 1400 > _MSC_VER

>e.g.  my msvc6 and gcc in linux. right?
>BM

thanks bjornmose, is was a typo
(it only disabled bullet for Visual Studio 2006, which is not even in planning stage :)
Should be fixed now
This commit is contained in:
Erwin Coumans 2005-07-29 06:08:02 +00:00
parent aa3a45ddfc
commit 7432e4485e

@ -36,11 +36,10 @@
//#define USE_SUMO_SOLID
//#define USE_ODE
//on visual studio 8, always enable BULLET.
//on visual studio 8, always enable BULLET for now
//you can have multiple physics engines running anyway, and
//the build system doesn't really support this at the moment.
#if 1400 < _MSC_VER
#else
//the scons build system doesn't really support this at the moment.
#if 1400 <= _MSC_VER
#define USE_BULLET
#endif