diff options
Diffstat (limited to 'thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp')
-rw-r--r-- | thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp b/thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp index c0e1bb708c..ff75ff8cc4 100644 --- a/thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp +++ b/thirdparty/bullet/Bullet3Serialize/Bullet2FileLoader/b3Chunk.cpp @@ -17,15 +17,13 @@ subject to the following restrictions: #include "b3Defines.h" #include "b3File.h" -#if !defined( __CELLOS_LV2__) && !defined(__MWERKS__) +#if !defined(__CELLOS_LV2__) && !defined(__MWERKS__) #include <memory.h> #endif #include <string.h> - using namespace bParse; - // ----------------------------------------------------- // short ChunkUtils::swapShort(short sht) { @@ -57,19 +55,15 @@ int ChunkUtils::getOffset(int flags) if (VOID_IS_8) { - if (flags &FD_BITS_VARIES) + if (flags & FD_BITS_VARIES) res = sizeof(bChunkPtr4); } else { - if (flags &FD_BITS_VARIES) + if (flags & FD_BITS_VARIES) res = sizeof(bChunkPtr8); } return res; } - - - - //eof |